LANG-1300: fix javadoc build && to &&

This commit is contained in:
Rob Tompkins 2017-03-17 06:59:45 -04:00
parent b521820b23
commit bf80b9e280
2 changed files with 8 additions and 8 deletions

View File

@ -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> &gt;= start) * (this.charAt(<i>k</i>) == searchChar) &amp;&amp; (<i>k</i> &gt;= 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> &gt;= start) * (this.codePointAt(<i>k</i>) == searchChar) &amp;&amp; (<i>k</i> &gt;= 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> &lt;= start) * (this.charAt(<i>k</i>) == searchChar) &amp;&amp; (<i>k</i> &lt;= 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> &lt;= start) * (this.codePointAt(<i>k</i>) == searchChar) &amp;&amp; (<i>k</i> &lt;= 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.

View File

@ -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> &gt;= startPos) * (this.charAt(<i>k</i>) == searchChar) &amp;&amp; (<i>k</i> &gt;= 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> &gt;= startPos) * (this.codePointAt(<i>k</i>) == searchChar) &amp;&amp; (<i>k</i> &gt;= 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> &lt;= startPos) * (this.charAt(<i>k</i>) == searchChar) &amp;&amp; (<i>k</i> &lt;= 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> &lt;= startPos) * (this.codePointAt(<i>k</i>) == searchChar) &amp;&amp; (<i>k</i> &lt;= 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