Skip to content

Commit 6b9b721

Browse files
committed
fix 0.12 release Javadoc errors
1 parent a48d923 commit 6b9b721

File tree

5 files changed

+20
-11
lines changed

5 files changed

+20
-11
lines changed

BEXCodeCompare/pom.xml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,10 @@
111111
<plugin>
112112
<groupId>org.apache.maven.plugins</groupId>
113113
<artifactId>maven-javadoc-plugin</artifactId>
114-
<version>2.9.1</version>
114+
<version>3.2.0</version>
115+
<configuration>
116+
<source>8</source>
117+
</configuration>
115118
<executions>
116119
<execution>
117120
<id>attach-javadocs</id>

BEXCodeCompare/src/main/java/info/codesaway/bex/ImmutableIntRangeMap.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,10 +170,10 @@ private int getIndex(final int key) {
170170
*
171171
* @param key the value to be searched for
172172
* @return index of the search key, if it is contained in the array;
173-
* otherwise, <tt>(-(<i>insertion point</i>) - 1)</tt>. The
173+
* otherwise, <code>(-(<i>insertion point</i>) - 1)</code>. The
174174
* <i>insertion point</i> is defined as the point at which the
175175
* key would be inserted into the array: the index of the first
176-
* element greater than the key, or <tt>a.length</tt> if all
176+
* element greater than the key, or <code>a.length</code> if all
177177
* elements in the array are less than the specified key. Note
178178
* that this guarantees that the return value will be &gt;= 0 if
179179
* and only if the key is found.

BEXCodeCompare/src/main/java/info/codesaway/bex/matching/BEXMatcher.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -852,10 +852,10 @@ public String replaceAll(final Function<BEXMatchResult, String> replacementFunct
852852
* replaced in the result by the replacement string. The replacement string
853853
* may contain references to captured subsequences as in the {@link #appendReplacement appendReplacement} method.</p>
854854
*
855-
* <p>Given the pattern <tt>dog</tt>, the input
856-
* <tt>"zzzdogzzzdogzzz"</tt>, and the replacement string <tt>"cat"</tt>, an
855+
* <p>Given the pattern <code>dog</code>, the input
856+
* <code>"zzzdogzzzdogzzz"</code>, and the replacement string <code>"cat"</code>, an
857857
* invocation of this method on a matcher for that expression would yield
858-
* the string <tt>"zzzcatzzzdogzzz"</tt>.</p>
858+
* the string <code>"zzzcatzzzdogzzz"</code>.</p>
859859
*
860860
* <p>Invoking this method changes this matcher's state. If the matcher
861861
* is to be used in further matching operations then it should first be
@@ -977,7 +977,7 @@ && isWordCharacter(nextChar(replacement, cursor + 1))) {
977977
* <p>It reads characters from the input sequence, starting at the append
978978
* position, and appends them to the given string buffer. It stops after
979979
* reading the last character preceding the previous match, that is, the
980-
* character at index {@link #start()}&nbsp;<tt>-</tt>&nbsp;<tt>1</tt>.</p>
980+
* character at index {@link #start()}&nbsp;<code>-</code>&nbsp;<code>1</code>.</p>
981981
* </li>
982982
*
983983
* <li>
@@ -996,8 +996,8 @@ && isWordCharacter(nextChar(replacement, cursor + 1))) {
996996
*
997997
* <p>This method is intended to be used in a loop together with the {@link #appendTail appendTail} and
998998
* {@link #find find} methods. The
999-
* following code, for example, writes <tt>one dog two dogs in the
1000-
* yard</tt> to the standard-outputSyntax stream:</p>
999+
* following code, for example, writes <code>one dog two dogs in the
1000+
* yard</code> to the standard-outputSyntax stream:</p>
10011001
*
10021002
* <blockquote>
10031003
*

BEXCodeRefactoring/pom.xml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,10 @@
104104
<plugin>
105105
<groupId>org.apache.maven.plugins</groupId>
106106
<artifactId>maven-javadoc-plugin</artifactId>
107-
<version>2.9.1</version>
107+
<version>3.2.0</version>
108+
<configuration>
109+
<source>8</source>
110+
</configuration>
108111
<executions>
109112
<execution>
110113
<id>attach-javadocs</id>

BEXCodeRefactoringExamples/pom.xml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,10 @@
9898
<plugin>
9999
<groupId>org.apache.maven.plugins</groupId>
100100
<artifactId>maven-javadoc-plugin</artifactId>
101-
<version>2.9.1</version>
101+
<version>3.2.0</version>
102+
<configuration>
103+
<source>8</source>
104+
</configuration>
102105
<executions>
103106
<execution>
104107
<id>attach-javadocs</id>

0 commit comments

Comments
 (0)