LANG-1300: fix javadoc build && to &&
This commit is contained in:
parent
b521820b23
commit
bf80b9e280
|
@ -69,12 +69,12 @@ public class CharSequenceUtils {
|
||||||
* of <code>searchChar</code> in the range from 0 to 0xFFFF (inclusive),
|
* of <code>searchChar</code> in the range from 0 to 0xFFFF (inclusive),
|
||||||
* this is the smallest value <i>k</i> such that:
|
* this is the smallest value <i>k</i> such that:
|
||||||
* <blockquote><pre>
|
* <blockquote><pre>
|
||||||
* (this.charAt(<i>k</i>) == searchChar) && (<i>k</i> >= start)
|
* (this.charAt(<i>k</i>) == searchChar) && (<i>k</i> >= start)
|
||||||
* </pre></blockquote>
|
* </pre></blockquote>
|
||||||
* is true. For other values of <code>searchChar</code>, it is the
|
* is true. For other values of <code>searchChar</code>, it is the
|
||||||
* smallest value <i>k</i> such that:
|
* smallest value <i>k</i> such that:
|
||||||
* <blockquote><pre>
|
* <blockquote><pre>
|
||||||
* (this.codePointAt(<i>k</i>) == searchChar) && (<i>k</i> >= start)
|
* (this.codePointAt(<i>k</i>) == searchChar) && (<i>k</i> >= start)
|
||||||
* </pre></blockquote>
|
* </pre></blockquote>
|
||||||
* is true. In either case, if no such character occurs inm <code>cs</code>
|
* is true. In either case, if no such character occurs inm <code>cs</code>
|
||||||
* at or after position <code>start</code>, then
|
* at or after position <code>start</code>, then
|
||||||
|
@ -153,12 +153,12 @@ public class CharSequenceUtils {
|
||||||
* from 0 to 0xFFFF (inclusive), the index returned is the largest
|
* from 0 to 0xFFFF (inclusive), the index returned is the largest
|
||||||
* value <i>k</i> such that:
|
* value <i>k</i> such that:
|
||||||
* <blockquote><pre>
|
* <blockquote><pre>
|
||||||
* (this.charAt(<i>k</i>) == searchChar) && (<i>k</i> <= start)
|
* (this.charAt(<i>k</i>) == searchChar) && (<i>k</i> <= start)
|
||||||
* </pre></blockquote>
|
* </pre></blockquote>
|
||||||
* is true. For other values of <code>searchChar</code>, it is the
|
* is true. For other values of <code>searchChar</code>, it is the
|
||||||
* largest value <i>k</i> such that:
|
* largest value <i>k</i> such that:
|
||||||
* <blockquote><pre>
|
* <blockquote><pre>
|
||||||
* (this.codePointAt(<i>k</i>) == searchChar) && (<i>k</i> <= start)
|
* (this.codePointAt(<i>k</i>) == searchChar) && (<i>k</i> <= start)
|
||||||
* </pre></blockquote>
|
* </pre></blockquote>
|
||||||
* is true. In either case, if no such character occurs in <code>cs</code>
|
* is true. In either case, if no such character occurs in <code>cs</code>
|
||||||
* at or before position <code>start</code>, then <code>-1</code> is returned.
|
* at or before position <code>start</code>, then <code>-1</code> is returned.
|
||||||
|
|
|
@ -1331,12 +1331,12 @@ public class StringUtils {
|
||||||
* of <code>searchChar</code> in the range from 0 to 0xFFFF (inclusive),
|
* of <code>searchChar</code> in the range from 0 to 0xFFFF (inclusive),
|
||||||
* this is the smallest value <i>k</i> such that:
|
* this is the smallest value <i>k</i> such that:
|
||||||
* <blockquote><pre>
|
* <blockquote><pre>
|
||||||
* (this.charAt(<i>k</i>) == searchChar) && (<i>k</i> >= startPos)
|
* (this.charAt(<i>k</i>) == searchChar) && (<i>k</i> >= startPos)
|
||||||
* </pre></blockquote>
|
* </pre></blockquote>
|
||||||
* is true. For other values of <code>searchChar</code>, it is the
|
* is true. For other values of <code>searchChar</code>, it is the
|
||||||
* smallest value <i>k</i> such that:
|
* smallest value <i>k</i> such that:
|
||||||
* <blockquote><pre>
|
* <blockquote><pre>
|
||||||
* (this.codePointAt(<i>k</i>) == searchChar) && (<i>k</i> >= startPos)
|
* (this.codePointAt(<i>k</i>) == searchChar) && (<i>k</i> >= startPos)
|
||||||
* </pre></blockquote>
|
* </pre></blockquote>
|
||||||
* is true. In either case, if no such character occurs in <code>seq</code>
|
* is true. In either case, if no such character occurs in <code>seq</code>
|
||||||
* at or after position <code>startPos</code>, then
|
* at or after position <code>startPos</code>, then
|
||||||
|
@ -1677,12 +1677,12 @@ public class StringUtils {
|
||||||
* from 0 to 0xFFFF (inclusive), the index returned is the largest
|
* from 0 to 0xFFFF (inclusive), the index returned is the largest
|
||||||
* value <i>k</i> such that:
|
* value <i>k</i> such that:
|
||||||
* <blockquote><pre>
|
* <blockquote><pre>
|
||||||
* (this.charAt(<i>k</i>) == searchChar) && (<i>k</i> <= startPos)
|
* (this.charAt(<i>k</i>) == searchChar) && (<i>k</i> <= startPos)
|
||||||
* </pre></blockquote>
|
* </pre></blockquote>
|
||||||
* is true. For other values of <code>searchChar</code>, it is the
|
* is true. For other values of <code>searchChar</code>, it is the
|
||||||
* largest value <i>k</i> such that:
|
* largest value <i>k</i> such that:
|
||||||
* <blockquote><pre>
|
* <blockquote><pre>
|
||||||
* (this.codePointAt(<i>k</i>) == searchChar) && (<i>k</i> <= startPos)
|
* (this.codePointAt(<i>k</i>) == searchChar) && (<i>k</i> <= startPos)
|
||||||
* </pre></blockquote>
|
* </pre></blockquote>
|
||||||
* is true. In either case, if no such character occurs in <code>seq</code>
|
* is true. In either case, if no such character occurs in <code>seq</code>
|
||||||
* at or before position <code>startPos</code>, then
|
* at or before position <code>startPos</code>, then
|
||||||
|
|
Loading…
Reference in New Issue