Skip to content

Commit 9903a86

Browse files
authored
Merge pull request #1225 from kazuki43zoo/gh-1224_fix-error-mvn-site
Fix mvn site error after mybatis-parent 31-SNAPSHOT
2 parents 8ac0fb4 + 8153445 commit 9903a86

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@
137137
<maven.compiler.testSource>1.8</maven.compiler.testSource>
138138
<maven.compiler.testCompilerArgument>-parameters</maven.compiler.testCompilerArgument>
139139
<clirr.comparisonVersion>3.3.1</clirr.comparisonVersion>
140-
<findbugs.onlyAnalyze>org.apache.ibatis.*</findbugs.onlyAnalyze>
140+
<spotbugs.onlyAnalyze>org.apache.ibatis.*</spotbugs.onlyAnalyze>
141141
<osgi.export>org.apache.ibatis.*;version=${project.version};-noimport:=true</osgi.export>
142142
<osgi.import>*;resolution:=optional</osgi.import>
143143
<osgi.dynamicImport>*</osgi.dynamicImport>

src/main/java/org/apache/ibatis/mapping/BoundSql.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
* An actual SQL String got from an {@link SqlSource} after having processed any dynamic content.
2828
* The SQL may have SQL placeholders "?" and an list (ordered) of an parameter mappings
2929
* with the additional information for each parameter (at least the property name of the input object to read
30-
* the value from).
31-
* </br>
30+
* the value from).
31+
* <p>
3232
* Can also have additional parameters that are created by the dynamic language (for loops, bind...).
3333
*
3434
* @author Clinton Begin

src/main/java/org/apache/ibatis/reflection/ParamNameResolver.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,8 @@ public String[] getNames() {
105105

106106
/**
107107
* <p>
108-
* A single non-special parameter is returned without a name.<br />
109-
* Multiple parameters are named using the naming rule.<br />
108+
* A single non-special parameter is returned without a name.
109+
* Multiple parameters are named using the naming rule.
110110
* In addition to the default names, this method also adds the generic names (param1, param2,
111111
* ...).
112112
* </p>

0 commit comments

Comments
 (0)