LANG-1300: fix javadoc build && to &&
Project: http://git-wip-us.apache.org/repos/asf/commons-lang/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-lang/commit/bf80b9e2 Tree: http://git-wip-us.apache.org/repos/asf/commons-lang/tree/bf80b9e2 Diff: http://git-wip-us.apache.org/repos/asf/commons-lang/diff/bf80b9e2 Branch: refs/heads/release Commit: bf80b9e2803aa277047951a7251267bfb7097c3b Parents: b521820 Author: Rob Tompkins <chtom...@gmail.com> Authored: Fri Mar 17 06:59:45 2017 -0400 Committer: Rob Tompkins <chtom...@gmail.com> Committed: Fri Mar 17 06:59:45 2017 -0400 ---------------------------------------------------------------------- .../java/org/apache/commons/lang3/CharSequenceUtils.java | 8 ++++---- src/main/java/org/apache/commons/lang3/StringUtils.java | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-lang/blob/bf80b9e2/src/main/java/org/apache/commons/lang3/CharSequenceUtils.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/commons/lang3/CharSequenceUtils.java b/src/main/java/org/apache/commons/lang3/CharSequenceUtils.java index 88d7373..e35f5aa 100644 --- a/src/main/java/org/apache/commons/lang3/CharSequenceUtils.java +++ b/src/main/java/org/apache/commons/lang3/CharSequenceUtils.java @@ -69,12 +69,12 @@ public class CharSequenceUtils { * of <code>searchChar</code> in the range from 0 to 0xFFFF (inclusive), * this is the smallest value <i>k</i> such that: * <blockquote><pre> - * (this.charAt(<i>k</i>) == searchChar) && (<i>k</i> >= start) + * (this.charAt(<i>k</i>) == searchChar) && (<i>k</i> >= start) * </pre></blockquote> * is true. For other values of <code>searchChar</code>, it is the * smallest value <i>k</i> such that: * <blockquote><pre> - * (this.codePointAt(<i>k</i>) == searchChar) && (<i>k</i> >= start) + * (this.codePointAt(<i>k</i>) == searchChar) && (<i>k</i> >= start) * </pre></blockquote> * is true. In either case, if no such character occurs inm <code>cs</code> * 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 * value <i>k</i> such that: * <blockquote><pre> - * (this.charAt(<i>k</i>) == searchChar) && (<i>k</i> <= start) + * (this.charAt(<i>k</i>) == searchChar) && (<i>k</i> <= start) * </pre></blockquote> * is true. For other values of <code>searchChar</code>, it is the * largest value <i>k</i> such that: * <blockquote><pre> - * (this.codePointAt(<i>k</i>) == searchChar) && (<i>k</i> <= start) + * (this.codePointAt(<i>k</i>) == searchChar) && (<i>k</i> <= start) * </pre></blockquote> * 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. http://git-wip-us.apache.org/repos/asf/commons-lang/blob/bf80b9e2/src/main/java/org/apache/commons/lang3/StringUtils.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/commons/lang3/StringUtils.java b/src/main/java/org/apache/commons/lang3/StringUtils.java index 357e8c5..dcb335d 100644 --- a/src/main/java/org/apache/commons/lang3/StringUtils.java +++ b/src/main/java/org/apache/commons/lang3/StringUtils.java @@ -1331,12 +1331,12 @@ public class StringUtils { * of <code>searchChar</code> in the range from 0 to 0xFFFF (inclusive), * this is the smallest value <i>k</i> such that: * <blockquote><pre> - * (this.charAt(<i>k</i>) == searchChar) && (<i>k</i> >= startPos) + * (this.charAt(<i>k</i>) == searchChar) && (<i>k</i> >= startPos) * </pre></blockquote> * is true. For other values of <code>searchChar</code>, it is the * smallest value <i>k</i> such that: * <blockquote><pre> - * (this.codePointAt(<i>k</i>) == searchChar) && (<i>k</i> >= startPos) + * (this.codePointAt(<i>k</i>) == searchChar) && (<i>k</i> >= startPos) * </pre></blockquote> * is true. In either case, if no such character occurs in <code>seq</code> * 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 * value <i>k</i> such that: * <blockquote><pre> - * (this.charAt(<i>k</i>) == searchChar) && (<i>k</i> <= startPos) + * (this.charAt(<i>k</i>) == searchChar) && (<i>k</i> <= startPos) * </pre></blockquote> * is true. For other values of <code>searchChar</code>, it is the * largest value <i>k</i> such that: * <blockquote><pre> - * (this.codePointAt(<i>k</i>) == searchChar) && (<i>k</i> <= startPos) + * (this.codePointAt(<i>k</i>) == searchChar) && (<i>k</i> <= startPos) * </pre></blockquote> * is true. In either case, if no such character occurs in <code>seq</code> * at or before position <code>startPos</code>, then