From 5fa073a5cac682b1a197b839aa6c0082ddcbf9ff Mon Sep 17 00:00:00 2001 From: Gary Gregory Date: Tue, 15 May 2018 12:58:01 -0600 Subject: [PATCH] Typo: 'JavaDoc' -> 'Javadoc'. --- README.md | 2 +- RELEASE-NOTES.txt | 10 +++++----- src/changes/changes.xml | 10 +++++----- src/site/resources/lang2-lang3-clirr-report.html | 4 ++-- src/site/resources/release-notes/RELEASE-NOTES-2.0.txt | 2 +- src/site/resources/release-notes/RELEASE-NOTES-2.1.txt | 2 +- src/site/resources/release-notes/RELEASE-NOTES-2.3.txt | 2 +- src/site/resources/release-notes/RELEASE-NOTES-2.5.txt | 2 +- .../resources/release-notes/RELEASE-NOTES-3.3.1.txt | 2 +- .../resources/release-notes/RELEASE-NOTES-3.3.2.txt | 2 +- src/site/resources/release-notes/RELEASE-NOTES-3.3.txt | 2 +- src/site/resources/release-notes/RELEASE-NOTES-3.4.txt | 4 ++-- src/site/resources/release-notes/RELEASE-NOTES-3.5.txt | 10 +++++----- src/site/resources/release-notes/RELEASE-NOTES-3.6.txt | 10 +++++----- src/site/resources/release-notes/RELEASE-NOTES-3.7.txt | 10 +++++----- src/site/xdoc/index.xml | 4 ++-- src/site/xdoc/upgradeto2_0.xml | 2 +- src/site/xdoc/upgradeto2_1.xml | 2 +- src/site/xdoc/upgradeto2_3.xml | 2 +- src/site/xdoc/upgradeto2_5.xml | 2 +- src/site/xdoc/userguide.xml | 2 +- 21 files changed, 44 insertions(+), 44 deletions(-) diff --git a/README.md b/README.md index aff6efb37..65fd0dc52 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ Documentation ------------- More information can be found on the [homepage](https://commons.apache.org/proper/commons-lang). -The [JavaDoc](https://commons.apache.org/proper/commons-lang/javadocs/api-release) can be browsed. +The [Javadoc](https://commons.apache.org/proper/commons-lang/javadocs/api-release) can be browsed. Questions related to the usage of Apache Commons Lang should be posted to the [user mailing list][ml]. Where can I get the latest release? diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt index b77a9b452..950df0767 100644 --- a/RELEASE-NOTES.txt +++ b/RELEASE-NOTES.txt @@ -494,7 +494,7 @@ o LANG-1111: Fix FindBugs warnings in DurationFormatUtils. o LANG-1162: StringUtils#equals fails with Index OOBE on non-Strings with identical leading prefix.. o LANG-1163: There are no tests for CharSequenceUtils.regionMatches. -o LANG-1200: Fix JavaDoc of StringUtils.ordinalIndexOf. Thanks to BarkZhang. +o LANG-1200: Fix Javadoc of StringUtils.ordinalIndexOf. Thanks to BarkZhang. o LANG-1191: Incorrect Javadoc StringUtils.containsAny(CharSequence, CharSequence...). Thanks to qed, Brent Worden and Gary Gregory. @@ -504,7 +504,7 @@ CHANGES o LANG-1197: Prepare Java 9 detection. o LANG-1262: CompareToBuilder.append(Object, Object, Comparator) method is too big to be inlined. Thanks to Ruslan Cheremin. -o LANG-1259: JavaDoc for ArrayUtils.isNotEmpty() is slightly misleading. Thanks +o LANG-1259: Javadoc for ArrayUtils.isNotEmpty() is slightly misleading. Thanks to Dominik Stadler. o LANG-1247: FastDatePrinter generates extra Date objects. Thanks to Benoit Wiart. @@ -529,7 +529,7 @@ o LANG-1218: EqualsBuilder.append(Object,Object) is too big to be inlined, o LANG-1210: StringUtils#startsWithAny has error in Javadoc. Thanks to Matthias Niehoff. o LANG-1208: StrSubstitutor can preserve escapes. Thanks to Samuel Karp. -o LANG-1182: Clarify JavaDoc of StringUtils.containsAny(). Thanks to +o LANG-1182: Clarify Javadoc of StringUtils.containsAny(). Thanks to Larry West and Pascal Schumacher. o LANG-1183: Making replacePattern/removePattern methods null safe in StringUtils. @@ -657,7 +657,7 @@ o LANG-1096: Update maven-pmd-plugin to 3.4. Thanks to Micha? Kordas. o LANG-1095: Update maven-antrun-plugin to 1.8. Thanks to Micha? Kordas. o LANG-877: Performance improvements for StringEscapeUtils. Thanks to Fabian Lange. -o LANG-1071: Fix wrong examples in JavaDoc of +o LANG-1071: Fix wrong examples in Javadoc of StringUtils.replaceEachRepeatedly(...), StringUtils.replaceEach(...) Thanks to Arno Noordover. o LANG-827: CompareToBuilder's doc doesn't specify precedence of fields it @@ -776,7 +776,7 @@ o LANG-961: org.apache.commons.lang3.reflect.FieldUtils.removeFinalModifier(Fie does not clean up after itself o LANG-958: FastDateParser javadoc incorrectly states that SimpleDateFormat is used internally -o LANG-956: Improve JavaDoc of WordUtils.wrap methods +o LANG-956: Improve Javadoc of WordUtils.wrap methods o LANG-939: Move Documentation from user guide to package-info files o LANG-953: Convert package.html files to package-info.java files o LANG-940: Fix deprecation warnings diff --git a/src/changes/changes.xml b/src/changes/changes.xml index cdf2a05b6..062cef8da 100644 --- a/src/changes/changes.xml +++ b/src/changes/changes.xml @@ -147,7 +147,7 @@ The type attribute can be add,update,fix,remove. Extend RandomStringUtils with methods that generate strings between a min and max length Handle "void" in ClassUtils.getClass() SerializationUtils#deserialize has unnecessary code and a comment for that - JavaDoc for ArrayUtils.isNotEmpty() is slightly misleading + Javadoc for ArrayUtils.isNotEmpty() is slightly misleading Add APIs StringUtils.wrapIfMissing(String, char|String) TypeUtils.isAssignable throws NullPointerException when fromType has type variables and toType generic superclass specifies type variable StringUtils#normalizeSpace does not trim the string anymore @@ -197,7 +197,7 @@ The type attribute can be add,update,fix,remove. Limit max heap memory for consistent Travis CI build Fix NullPointerException in FastDateParser$TimeZoneStrategy ordinalIndexOf("abc", "ab", 1) gives incorrect answer of -1 (correct answer should be 0); revert fix for LANG-1077 - Clarify JavaDoc of StringUtils.containsAny() + Clarify Javadoc of StringUtils.containsAny() Add StringUtils methods to compare a string to multiple strings Add remove by regular expression methods in StringUtils Making replacePattern/removePattern methods null safe in StringUtils @@ -244,7 +244,7 @@ The type attribute can be add,update,fix,remove. Fix parsing edge cases in FastDateParser StringUtils#equals fails with Index OOBE on non-Strings with identical leading prefix There are no tests for CharSequenceUtils.regionMatches - StringUtils.ordinalIndexOf: Add missing right parenthesis in JavaDoc example + StringUtils.ordinalIndexOf: Add missing right parenthesis in Javadoc example Incorrect Javadoc StringUtils.containsAny(CharSequence, CharSequence...) Added new property IS_OS_MAC_OSX_EL_CAPITAN in SystemUtils @@ -278,7 +278,7 @@ The type attribute can be add,update,fix,remove. Add (T) casts to get unit tests to pass in old JDK Add JsonToStringStyle implementation to ToStringStyle Add NoClassNameToStringStyle implementation of ToStringStyle - Fix wrong examples in JavaDoc of StringUtils.replaceEachRepeatedly(...), StringUtils.replaceEach(...) + Fix wrong examples in Javadoc of StringUtils.replaceEachRepeatedly(...), StringUtils.replaceEach(...) Add StringUtils.containsAny(CharSequence, CharSequence...) method Read wrong component type of array in add in ArrayUtils StringUtils.ordinalIndexOf("aaaaaa", "aa", 2) != 3 in StringUtils @@ -344,7 +344,7 @@ The type attribute can be add,update,fix,remove. FastDateParser javadoc incorrectly states that SimpleDateFormat is used internally There should be a DifferenceBuilder with a ReflectionDifferenceBuilder implementation uncaught PatternSyntaxException in FastDateFormat on Android - Improve JavaDoc of WordUtils.wrap methods + Improve Javadoc of WordUtils.wrap methods Add the Jaro-Winkler string distance algorithm to StringUtils StringUtils.getLevenshteinDistance with too big of a threshold returns wrong result Test DurationFormatUtilsTest.testEdgeDuration fails in JDK 1.6, 1.7 and 1.8, BRST time zone diff --git a/src/site/resources/lang2-lang3-clirr-report.html b/src/site/resources/lang2-lang3-clirr-report.html index 950e7d7f4..ab5bd7b7e 100644 --- a/src/site/resources/lang2-lang3-clirr-report.html +++ b/src/site/resources/lang2-lang3-clirr-report.html @@ -144,7 +144,7 @@ limitations under the License. FindBugs Report
  • - JavaDocs + Javadocs
  • JavaNCSS Report @@ -168,7 +168,7 @@ limitations under the License. Tag List
  • - Test JavaDocs + Test Javadocs
  • Test Source Xref diff --git a/src/site/resources/release-notes/RELEASE-NOTES-2.0.txt b/src/site/resources/release-notes/RELEASE-NOTES-2.0.txt index 9ee37521a..c17c04f8b 100644 --- a/src/site/resources/release-notes/RELEASE-NOTES-2.0.txt +++ b/src/site/resources/release-notes/RELEASE-NOTES-2.0.txt @@ -147,7 +147,7 @@ ID Sev Pri Plt Owner State Result Summary 16284 MethodUtils: Removed unused code/unused local vars. 16341 No Javadoc for NestableDelegate 16622 Removed compile warning in FastDateFormat -16669 JavaDoc Errata +16669 Javadoc Errata 16676 StackOverflow due to ToStringBuilder 16689 ExceptionUtils new methods. 16690 Specify initial size for Enum's HashMap. diff --git a/src/site/resources/release-notes/RELEASE-NOTES-2.1.txt b/src/site/resources/release-notes/RELEASE-NOTES-2.1.txt index 609bccd18..137c30083 100644 --- a/src/site/resources/release-notes/RELEASE-NOTES-2.1.txt +++ b/src/site/resources/release-notes/RELEASE-NOTES-2.1.txt @@ -142,7 +142,7 @@ BUG FIXES: 31572 o.a.c.lang.enum.ValuedEnum: 'enum'is a keyword in JDK1.5.0 31933 ToStringStyle setArrayEnd handled null incorrectly 32133 SystemUtils fails init on HP-UX -32198 Error in JavaDoc for StringUtils.chomp(String, String) +32198 Error in Javadoc for StringUtils.chomp(String, String) 32625 Can't subclass EqualsBuilder because isEquals is private 33067 EqualsBuilder.append(Object[], Object[]) crashes with a NullPointerException if an element of the first array is null 33069 EqualsBuilder.append(Object[], Object[]) incorrectly checks that rhs[i] is instance of lhs[i]'s class diff --git a/src/site/resources/release-notes/RELEASE-NOTES-2.3.txt b/src/site/resources/release-notes/RELEASE-NOTES-2.3.txt index eed2ceb2c..fcaaf2be1 100644 --- a/src/site/resources/release-notes/RELEASE-NOTES-2.3.txt +++ b/src/site/resources/release-notes/RELEASE-NOTES-2.3.txt @@ -91,7 +91,7 @@ BUG FIXES IN 2.3: IMPROVEMENTS IN 2.3: - * [LANG-258] - Enum JavaDoc + * [LANG-258] - Enum Javadoc * [LANG-266] - Wish for StringUtils.join(Collection, *) * [LANG-268] - StringUtils.join should allow you to pass a range for it (so it only joins a part of the array) * [LANG-275] - StringUtils substringsBetween diff --git a/src/site/resources/release-notes/RELEASE-NOTES-2.5.txt b/src/site/resources/release-notes/RELEASE-NOTES-2.5.txt index b7897cd4c..6fe9ebd26 100644 --- a/src/site/resources/release-notes/RELEASE-NOTES-2.5.txt +++ b/src/site/resources/release-notes/RELEASE-NOTES-2.5.txt @@ -81,7 +81,7 @@ BUG FIXES IN 2.5 * [LANG-521] - NumberUtils - isNumber(String) and createNumber(String) both modified to support '2.' * [LANG-432] - StringUtils - improve handling of case-insensitive Strings * [LANG-552] - StringUtils - replaceEach() no longer NPEs when null appears in the last String[] - * [LANG-460] - StringUtils - correct JavaDocs for startsWith() and startsWithIgnoreCase() + * [LANG-460] - StringUtils - correct Javadocs for startsWith() and startsWithIgnoreCase() * [LANG-421] - StringEscapeUtils - escapeJava() escapes '/' characters * [LANG-450] - StringEscapeUtils - change escapeJavaStyleString() to throw UnhandledException instead swallowing IOException * [LANG-419] - WordUtils - fix StringIndexOutOfBoundsException when lower is greater than the String length diff --git a/src/site/resources/release-notes/RELEASE-NOTES-3.3.1.txt b/src/site/resources/release-notes/RELEASE-NOTES-3.3.1.txt index 59975036c..de7641c41 100644 --- a/src/site/resources/release-notes/RELEASE-NOTES-3.3.1.txt +++ b/src/site/resources/release-notes/RELEASE-NOTES-3.3.1.txt @@ -102,7 +102,7 @@ o LANG-961: org.apache.commons.lang3.reflect.FieldUtils.removeFinalModifier(Fie does not clean up after itself o LANG-958: FastDateParser javadoc incorrectly states that SimpleDateFormat is used internally -o LANG-956: Improve JavaDoc of WordUtils.wrap methods +o LANG-956: Improve Javadoc of WordUtils.wrap methods o LANG-939: Move Documentation from user guide to package-info files o LANG-953: Convert package.html files to package-info.java files o LANG-940: Fix deprecation warnings diff --git a/src/site/resources/release-notes/RELEASE-NOTES-3.3.2.txt b/src/site/resources/release-notes/RELEASE-NOTES-3.3.2.txt index 1ddb14bf3..c0684fa79 100644 --- a/src/site/resources/release-notes/RELEASE-NOTES-3.3.2.txt +++ b/src/site/resources/release-notes/RELEASE-NOTES-3.3.2.txt @@ -115,7 +115,7 @@ o LANG-961: org.apache.commons.lang3.reflect.FieldUtils.removeFinalModifier(Fie does not clean up after itself o LANG-958: FastDateParser javadoc incorrectly states that SimpleDateFormat is used internally -o LANG-956: Improve JavaDoc of WordUtils.wrap methods +o LANG-956: Improve Javadoc of WordUtils.wrap methods o LANG-939: Move Documentation from user guide to package-info files o LANG-953: Convert package.html files to package-info.java files o LANG-940: Fix deprecation warnings diff --git a/src/site/resources/release-notes/RELEASE-NOTES-3.3.txt b/src/site/resources/release-notes/RELEASE-NOTES-3.3.txt index 083fb1cea..6afb50994 100644 --- a/src/site/resources/release-notes/RELEASE-NOTES-3.3.txt +++ b/src/site/resources/release-notes/RELEASE-NOTES-3.3.txt @@ -88,7 +88,7 @@ o LANG-961: org.apache.commons.lang3.reflect.FieldUtils.removeFinalModifier(Fie does not clean up after itself o LANG-958: FastDateParser javadoc incorrectly states that SimpleDateFormat is used internally -o LANG-956: Improve JavaDoc of WordUtils.wrap methods +o LANG-956: Improve Javadoc of WordUtils.wrap methods o LANG-939: Move Documentation from user guide to package-info files o LANG-953: Convert package.html files to package-info.java files o LANG-940: Fix deprecation warnings diff --git a/src/site/resources/release-notes/RELEASE-NOTES-3.4.txt b/src/site/resources/release-notes/RELEASE-NOTES-3.4.txt index 170f00b44..011c32ca7 100644 --- a/src/site/resources/release-notes/RELEASE-NOTES-3.4.txt +++ b/src/site/resources/release-notes/RELEASE-NOTES-3.4.txt @@ -135,7 +135,7 @@ o LANG-1096: Update maven-pmd-plugin to 3.4. Thanks to Micha? Kordas. o LANG-1095: Update maven-antrun-plugin to 1.8. Thanks to Micha? Kordas. o LANG-877: Performance improvements for StringEscapeUtils. Thanks to Fabian Lange. -o LANG-1071: Fix wrong examples in JavaDoc of +o LANG-1071: Fix wrong examples in Javadoc of StringUtils.replaceEachRepeatedly(...), StringUtils.replaceEach(...) Thanks to Arno Noordover. o LANG-827: CompareToBuilder's doc doesn't specify precedence of fields it @@ -248,7 +248,7 @@ o LANG-961: org.apache.commons.lang3.reflect.FieldUtils.removeFinalModifier(Fie does not clean up after itself o LANG-958: FastDateParser javadoc incorrectly states that SimpleDateFormat is used internally -o LANG-956: Improve JavaDoc of WordUtils.wrap methods +o LANG-956: Improve Javadoc of WordUtils.wrap methods o LANG-939: Move Documentation from user guide to package-info files o LANG-953: Convert package.html files to package-info.java files o LANG-940: Fix deprecation warnings diff --git a/src/site/resources/release-notes/RELEASE-NOTES-3.5.txt b/src/site/resources/release-notes/RELEASE-NOTES-3.5.txt index 48f0348b6..904caf3b8 100644 --- a/src/site/resources/release-notes/RELEASE-NOTES-3.5.txt +++ b/src/site/resources/release-notes/RELEASE-NOTES-3.5.txt @@ -258,7 +258,7 @@ o LANG-1111: Fix FindBugs warnings in DurationFormatUtils. o LANG-1162: StringUtils#equals fails with Index OOBE on non-Strings with identical leading prefix.. o LANG-1163: There are no tests for CharSequenceUtils.regionMatches. -o LANG-1200: Fix JavaDoc of StringUtils.ordinalIndexOf. Thanks to BarkZhang. +o LANG-1200: Fix Javadoc of StringUtils.ordinalIndexOf. Thanks to BarkZhang. o LANG-1191: Incorrect Javadoc StringUtils.containsAny(CharSequence, CharSequence...). Thanks to qed, Brent Worden and Gary Gregory. @@ -268,7 +268,7 @@ CHANGES o LANG-1197: Prepare Java 9 detection. o LANG-1262: CompareToBuilder.append(Object, Object, Comparator) method is too big to be inlined. Thanks to Ruslan Cheremin. -o LANG-1259: JavaDoc for ArrayUtils.isNotEmpty() is slightly misleading. Thanks +o LANG-1259: Javadoc for ArrayUtils.isNotEmpty() is slightly misleading. Thanks to Dominik Stadler. o LANG-1247: FastDatePrinter generates extra Date objects. Thanks to Benoit Wiart. @@ -293,7 +293,7 @@ o LANG-1218: EqualsBuilder.append(Object,Object) is too big to be inlined, o LANG-1210: StringUtils#startsWithAny has error in Javadoc. Thanks to Matthias Niehoff. o LANG-1208: StrSubstitutor can preserve escapes. Thanks to Samuel Karp. -o LANG-1182: Clarify JavaDoc of StringUtils.containsAny(). Thanks to +o LANG-1182: Clarify Javadoc of StringUtils.containsAny(). Thanks to Larry West and Pascal Schumacher. o LANG-1183: Making replacePattern/removePattern methods null safe in StringUtils. @@ -421,7 +421,7 @@ o LANG-1096: Update maven-pmd-plugin to 3.4. Thanks to Micha? Kordas. o LANG-1095: Update maven-antrun-plugin to 1.8. Thanks to Micha? Kordas. o LANG-877: Performance improvements for StringEscapeUtils. Thanks to Fabian Lange. -o LANG-1071: Fix wrong examples in JavaDoc of +o LANG-1071: Fix wrong examples in Javadoc of StringUtils.replaceEachRepeatedly(...), StringUtils.replaceEach(...) Thanks to Arno Noordover. o LANG-827: CompareToBuilder's doc doesn't specify precedence of fields it @@ -540,7 +540,7 @@ o LANG-961: org.apache.commons.lang3.reflect.FieldUtils.removeFinalModifier(Fie does not clean up after itself o LANG-958: FastDateParser javadoc incorrectly states that SimpleDateFormat is used internally -o LANG-956: Improve JavaDoc of WordUtils.wrap methods +o LANG-956: Improve Javadoc of WordUtils.wrap methods o LANG-939: Move Documentation from user guide to package-info files o LANG-953: Convert package.html files to package-info.java files o LANG-940: Fix deprecation warnings diff --git a/src/site/resources/release-notes/RELEASE-NOTES-3.6.txt b/src/site/resources/release-notes/RELEASE-NOTES-3.6.txt index a3fc4b074..485557c30 100644 --- a/src/site/resources/release-notes/RELEASE-NOTES-3.6.txt +++ b/src/site/resources/release-notes/RELEASE-NOTES-3.6.txt @@ -442,7 +442,7 @@ o LANG-1111: Fix FindBugs warnings in DurationFormatUtils. o LANG-1162: StringUtils#equals fails with Index OOBE on non-Strings with identical leading prefix.. o LANG-1163: There are no tests for CharSequenceUtils.regionMatches. -o LANG-1200: Fix JavaDoc of StringUtils.ordinalIndexOf. Thanks to BarkZhang. +o LANG-1200: Fix Javadoc of StringUtils.ordinalIndexOf. Thanks to BarkZhang. o LANG-1191: Incorrect Javadoc StringUtils.containsAny(CharSequence, CharSequence...). Thanks to qed, Brent Worden and Gary Gregory. @@ -452,7 +452,7 @@ CHANGES o LANG-1197: Prepare Java 9 detection. o LANG-1262: CompareToBuilder.append(Object, Object, Comparator) method is too big to be inlined. Thanks to Ruslan Cheremin. -o LANG-1259: JavaDoc for ArrayUtils.isNotEmpty() is slightly misleading. Thanks +o LANG-1259: Javadoc for ArrayUtils.isNotEmpty() is slightly misleading. Thanks to Dominik Stadler. o LANG-1247: FastDatePrinter generates extra Date objects. Thanks to Benoit Wiart. @@ -477,7 +477,7 @@ o LANG-1218: EqualsBuilder.append(Object,Object) is too big to be inlined, o LANG-1210: StringUtils#startsWithAny has error in Javadoc. Thanks to Matthias Niehoff. o LANG-1208: StrSubstitutor can preserve escapes. Thanks to Samuel Karp. -o LANG-1182: Clarify JavaDoc of StringUtils.containsAny(). Thanks to +o LANG-1182: Clarify Javadoc of StringUtils.containsAny(). Thanks to Larry West and Pascal Schumacher. o LANG-1183: Making replacePattern/removePattern methods null safe in StringUtils. @@ -605,7 +605,7 @@ o LANG-1096: Update maven-pmd-plugin to 3.4. Thanks to Micha? Kordas. o LANG-1095: Update maven-antrun-plugin to 1.8. Thanks to Micha? Kordas. o LANG-877: Performance improvements for StringEscapeUtils. Thanks to Fabian Lange. -o LANG-1071: Fix wrong examples in JavaDoc of +o LANG-1071: Fix wrong examples in Javadoc of StringUtils.replaceEachRepeatedly(...), StringUtils.replaceEach(...) Thanks to Arno Noordover. o LANG-827: CompareToBuilder's doc doesn't specify precedence of fields it @@ -724,7 +724,7 @@ o LANG-961: org.apache.commons.lang3.reflect.FieldUtils.removeFinalModifier(Fie does not clean up after itself o LANG-958: FastDateParser javadoc incorrectly states that SimpleDateFormat is used internally -o LANG-956: Improve JavaDoc of WordUtils.wrap methods +o LANG-956: Improve Javadoc of WordUtils.wrap methods o LANG-939: Move Documentation from user guide to package-info files o LANG-953: Convert package.html files to package-info.java files o LANG-940: Fix deprecation warnings diff --git a/src/site/resources/release-notes/RELEASE-NOTES-3.7.txt b/src/site/resources/release-notes/RELEASE-NOTES-3.7.txt index b77a9b452..950df0767 100644 --- a/src/site/resources/release-notes/RELEASE-NOTES-3.7.txt +++ b/src/site/resources/release-notes/RELEASE-NOTES-3.7.txt @@ -494,7 +494,7 @@ o LANG-1111: Fix FindBugs warnings in DurationFormatUtils. o LANG-1162: StringUtils#equals fails with Index OOBE on non-Strings with identical leading prefix.. o LANG-1163: There are no tests for CharSequenceUtils.regionMatches. -o LANG-1200: Fix JavaDoc of StringUtils.ordinalIndexOf. Thanks to BarkZhang. +o LANG-1200: Fix Javadoc of StringUtils.ordinalIndexOf. Thanks to BarkZhang. o LANG-1191: Incorrect Javadoc StringUtils.containsAny(CharSequence, CharSequence...). Thanks to qed, Brent Worden and Gary Gregory. @@ -504,7 +504,7 @@ CHANGES o LANG-1197: Prepare Java 9 detection. o LANG-1262: CompareToBuilder.append(Object, Object, Comparator) method is too big to be inlined. Thanks to Ruslan Cheremin. -o LANG-1259: JavaDoc for ArrayUtils.isNotEmpty() is slightly misleading. Thanks +o LANG-1259: Javadoc for ArrayUtils.isNotEmpty() is slightly misleading. Thanks to Dominik Stadler. o LANG-1247: FastDatePrinter generates extra Date objects. Thanks to Benoit Wiart. @@ -529,7 +529,7 @@ o LANG-1218: EqualsBuilder.append(Object,Object) is too big to be inlined, o LANG-1210: StringUtils#startsWithAny has error in Javadoc. Thanks to Matthias Niehoff. o LANG-1208: StrSubstitutor can preserve escapes. Thanks to Samuel Karp. -o LANG-1182: Clarify JavaDoc of StringUtils.containsAny(). Thanks to +o LANG-1182: Clarify Javadoc of StringUtils.containsAny(). Thanks to Larry West and Pascal Schumacher. o LANG-1183: Making replacePattern/removePattern methods null safe in StringUtils. @@ -657,7 +657,7 @@ o LANG-1096: Update maven-pmd-plugin to 3.4. Thanks to Micha? Kordas. o LANG-1095: Update maven-antrun-plugin to 1.8. Thanks to Micha? Kordas. o LANG-877: Performance improvements for StringEscapeUtils. Thanks to Fabian Lange. -o LANG-1071: Fix wrong examples in JavaDoc of +o LANG-1071: Fix wrong examples in Javadoc of StringUtils.replaceEachRepeatedly(...), StringUtils.replaceEach(...) Thanks to Arno Noordover. o LANG-827: CompareToBuilder's doc doesn't specify precedence of fields it @@ -776,7 +776,7 @@ o LANG-961: org.apache.commons.lang3.reflect.FieldUtils.removeFinalModifier(Fie does not clean up after itself o LANG-958: FastDateParser javadoc incorrectly states that SimpleDateFormat is used internally -o LANG-956: Improve JavaDoc of WordUtils.wrap methods +o LANG-956: Improve Javadoc of WordUtils.wrap methods o LANG-939: Move Documentation from user guide to package-info files o LANG-953: Convert package.html files to package-info.java files o LANG-940: Fix deprecation warnings diff --git a/src/site/xdoc/index.xml b/src/site/xdoc/index.xml index 55c9d5635..0111baae9 100644 --- a/src/site/xdoc/index.xml +++ b/src/site/xdoc/index.xml @@ -43,11 +43,11 @@ Note that Lang 3.0 (and subsequent versions) use a different package (org.ap

    -The package descriptions in the JavaDoc give an overview of the available features +The package descriptions in the Javadoc give an overview of the available features and various project reports are provided.

    -The JavaDoc API documents are available online: +The Javadoc API documents are available online:

    • The current stable release 3.7 [Java 7.0+]
    • diff --git a/src/site/xdoc/upgradeto2_0.xml b/src/site/xdoc/upgradeto2_0.xml index 10fee359a..02c507405 100644 --- a/src/site/xdoc/upgradeto2_0.xml +++ b/src/site/xdoc/upgradeto2_0.xml @@ -154,7 +154,7 @@ ID Sev Pri Plt Owner State Result Summary 16284 MethodUtils: Removed unused code/unused local vars. 16341 No Javadoc for NestableDelegate 16622 Removed compile warning in FastDateFormat -16669 JavaDoc Errata +16669 Javadoc Errata 16676 StackOverflow due to ToStringBuilder 16689 ExceptionUtils new methods. 16690 Specify initial size for Enum's HashMap. diff --git a/src/site/xdoc/upgradeto2_1.xml b/src/site/xdoc/upgradeto2_1.xml index 02205b5d2..ea4015866 100644 --- a/src/site/xdoc/upgradeto2_1.xml +++ b/src/site/xdoc/upgradeto2_1.xml @@ -149,7 +149,7 @@ BUG FIXES: 31572 o.a.c.lang.enum.ValuedEnum: 'enum'is a keyword in JDK1.5.0 31933 ToStringStyle setArrayEnd handled null incorrectly 32133 SystemUtils fails init on HP-UX -32198 Error in JavaDoc for StringUtils.chomp(String, String) +32198 Error in Javadoc for StringUtils.chomp(String, String) 32625 Can't subclass EqualsBuilder because isEquals is private 33067 EqualsBuilder.append(Object[], Object[]) crashes with a NullPointerException if an element of the first array is null 33069 EqualsBuilder.append(Object[], Object[]) incorrectly checks that rhs[i] is instance of lhs[i]'s class diff --git a/src/site/xdoc/upgradeto2_3.xml b/src/site/xdoc/upgradeto2_3.xml index 2f43d557f..3abf04bfc 100644 --- a/src/site/xdoc/upgradeto2_3.xml +++ b/src/site/xdoc/upgradeto2_3.xml @@ -98,7 +98,7 @@ BUG FIXES IN 2.3: IMPROVEMENTS IN 2.3: - * [LANG-258] - Enum JavaDoc + * [LANG-258] - Enum Javadoc * [LANG-266] - Wish for StringUtils.join(Collection, *) * [LANG-268] - StringUtils.join should allow you to pass a range for it (so it only joins a part of the array) * [LANG-275] - StringUtils substringsBetween diff --git a/src/site/xdoc/upgradeto2_5.xml b/src/site/xdoc/upgradeto2_5.xml index 2eb2c1742..be73c0d13 100644 --- a/src/site/xdoc/upgradeto2_5.xml +++ b/src/site/xdoc/upgradeto2_5.xml @@ -82,7 +82,7 @@ BUG FIXES IN 2.5 * [LANG-521] - NumberUtils - isNumber(String) and createNumber(String) both modified to support '2.' * [LANG-432] - StringUtils - improve handling of case-insensitive Strings * [LANG-552] - StringUtils - replaceEach() no longer NPEs when null appears in the last String[] - * [LANG-460] - StringUtils - correct JavaDocs for startsWith() and startsWithIgnoreCase() + * [LANG-460] - StringUtils - correct Javadocs for startsWith() and startsWithIgnoreCase() * [LANG-421] - StringEscapeUtils - escapeJava() escapes '/' characters * [LANG-450] - StringEscapeUtils - change escapeJavaStyleString() to throw UnhandledException instead swallowing IOException * [LANG-419] - WordUtils - fix StringIndexOutOfBoundsException when lower is greater than the String length diff --git a/src/site/xdoc/userguide.xml b/src/site/xdoc/userguide.xml index f5494d5db..3633cf5ec 100644 --- a/src/site/xdoc/userguide.xml +++ b/src/site/xdoc/userguide.xml @@ -27,7 +27,7 @@ limitations under the License.
      - Looking for the User Guide? It has been moved to the package JavaDoc + Looking for the User Guide? It has been moved to the package Javadoc