Typo: 'JavaDoc' -> 'Javadoc'.
This commit is contained in:
parent
3fadfdd69f
commit
5fa073a5ca
|
@ -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?
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -147,7 +147,7 @@ The <action> type attribute can be add,update,fix,remove.
|
|||
<action issue="LANG-1224" type="add" dev="pschumacher" due-to="Caleb Cushing">Extend RandomStringUtils with methods that generate strings between a min and max length</action>
|
||||
<action issue="LANG-1214" type="fix" dev="pschumacher" due-to="Henry Tung">Handle "void" in ClassUtils.getClass()</action>
|
||||
<action issue="LANG-1250" type="fix" dev="pschumacher" due-to="Glease Wang">SerializationUtils#deserialize has unnecessary code and a comment for that</action>
|
||||
<action issue="LANG-1259" type="update" dev="britter" due-to="Dominik Stadler">JavaDoc for ArrayUtils.isNotEmpty() is slightly misleading</action>
|
||||
<action issue="LANG-1259" type="update" dev="britter" due-to="Dominik Stadler">Javadoc for ArrayUtils.isNotEmpty() is slightly misleading</action>
|
||||
<action issue="LANG-1257" type="add" dev="ggregory" due-to="Gary Gregory">Add APIs StringUtils.wrapIfMissing(String, char|String)</action>
|
||||
<action issue="LANG-1190" type="fix" dev="pschumacher" due-to="pschumacher">TypeUtils.isAssignable throws NullPointerException when fromType has type variables and toType generic superclass specifies type variable</action>
|
||||
<action issue="LANG-1226" type="fix" dev="pschumacher" due-to="pschumacher">StringUtils#normalizeSpace does not trim the string anymore</action>
|
||||
|
@ -197,7 +197,7 @@ The <action> type attribute can be add,update,fix,remove.
|
|||
<action issue="LANG-1194" type="fix" dev="chas">Limit max heap memory for consistent Travis CI build</action>
|
||||
<action issue="LANG-1186" type="fix" dev="chas" due-to="NickManley">Fix NullPointerException in FastDateParser$TimeZoneStrategy</action>
|
||||
<action issue="LANG-1193" type="fix" dev="sebb" due-to="Qin Li">ordinalIndexOf("abc", "ab", 1) gives incorrect answer of -1 (correct answer should be 0); revert fix for LANG-1077</action>
|
||||
<action issue="LANG-1182" type="update" dev="britter" due-to="Larry West, Pascal Schumacher">Clarify JavaDoc of StringUtils.containsAny()</action>
|
||||
<action issue="LANG-1182" type="update" dev="britter" due-to="Larry West, Pascal Schumacher">Clarify Javadoc of StringUtils.containsAny()</action>
|
||||
<action issue="LANG-1169" type="add" dev="lguibert" due-to="Rafal Glowinski, Robert Parr, Arman Sharif">Add StringUtils methods to compare a string to multiple strings</action>
|
||||
<action issue="LANG-1185" type="add" dev="lguibert">Add remove by regular expression methods in StringUtils</action>
|
||||
<action issue="LANG-1183" type="update" dev="lguibert">Making replacePattern/removePattern methods null safe in StringUtils</action>
|
||||
|
@ -244,7 +244,7 @@ The <action> type attribute can be add,update,fix,remove.
|
|||
<action issue="LANG-1107" type="update" dev="chas">Fix parsing edge cases in FastDateParser</action>
|
||||
<action issue="LANG-1162" type="fix" dev="sebb">StringUtils#equals fails with Index OOBE on non-Strings with identical leading prefix</action>
|
||||
<action issue="LANG-1163" type="fix" dev="sebb">There are no tests for CharSequenceUtils.regionMatches</action>
|
||||
<action issue="LANG-1200" type="fix" dev="ggregory" due-to="BarkZhang">StringUtils.ordinalIndexOf: Add missing right parenthesis in JavaDoc example</action>
|
||||
<action issue="LANG-1200" type="fix" dev="ggregory" due-to="BarkZhang">StringUtils.ordinalIndexOf: Add missing right parenthesis in Javadoc example</action>
|
||||
<action issue="LANG-1191" type="fix" dev="ggregory" due-to="qed, Brent Worden, Gary Gregory">Incorrect Javadoc StringUtils.containsAny(CharSequence, CharSequence...)</action>
|
||||
<action type="update" dev="ebourg" due-to="Jake Wang">Added new property IS_OS_MAC_OSX_EL_CAPITAN in SystemUtils</action>
|
||||
</release>
|
||||
|
@ -278,7 +278,7 @@ The <action> type attribute can be add,update,fix,remove.
|
|||
<action issue="LANG-1083" type="fix" dev="britter" due-to="Jonathan Baker">Add (T) casts to get unit tests to pass in old JDK</action>
|
||||
<action issue="LANG-1015" type="add" dev="britter" due-to="Thiago Andrade">Add JsonToStringStyle implementation to ToStringStyle</action>
|
||||
<action issue="LANG-1080" type="add" dev="britter" due-to="Innokenty Shuvalov">Add NoClassNameToStringStyle implementation of ToStringStyle</action>
|
||||
<action issue="LANG-1071" type="update" dev="britter" due-to="Arno Noordover">Fix wrong examples in JavaDoc of StringUtils.replaceEachRepeatedly(...), StringUtils.replaceEach(...)</action>
|
||||
<action issue="LANG-1071" type="update" dev="britter" due-to="Arno Noordover">Fix wrong examples in Javadoc of StringUtils.replaceEachRepeatedly(...), StringUtils.replaceEach(...)</action>
|
||||
<action issue="LANG-883" type="add" dev="britter" due-to="Daniel Stewart">Add StringUtils.containsAny(CharSequence, CharSequence...) method</action>
|
||||
<action issue="LANG-1073" type="fix" dev="kinow" due-to="haiyang li">Read wrong component type of array in add in ArrayUtils</action>
|
||||
<action issue="LANG-1077" type="fix" dev="kinow" due-to="haiyang li">StringUtils.ordinalIndexOf("aaaaaa", "aa", 2) != 3 in StringUtils</action>
|
||||
|
@ -344,7 +344,7 @@ The <action> type attribute can be add,update,fix,remove.
|
|||
<action issue="LANG-958" type="update" dev="chas">FastDateParser javadoc incorrectly states that SimpleDateFormat is used internally</action>
|
||||
<action issue="LANG-637" type="add" dev="djones">There should be a DifferenceBuilder with a ReflectionDifferenceBuilder implementation</action>
|
||||
<action issue="LANG-954" type="fix" due-to="Michael Keppler" dev="sebb">uncaught PatternSyntaxException in FastDateFormat on Android</action>
|
||||
<action issue="LANG-956" type="update" dev="britter">Improve JavaDoc of WordUtils.wrap methods</action>
|
||||
<action issue="LANG-956" type="update" dev="britter">Improve Javadoc of WordUtils.wrap methods</action>
|
||||
<action issue="LANG-944" type="add" dev="britter" due-to="Rekha Joshi">Add the Jaro-Winkler string distance algorithm to StringUtils</action>
|
||||
<action issue="LANG-936" type="fix" dev="bayard" due-to="Yaniv Kunda, Eli Lindsey">StringUtils.getLevenshteinDistance with too big of a threshold returns wrong result</action>
|
||||
<action issue="LANG-943" type="fix" dev="kinow">Test DurationFormatUtilsTest.testEdgeDuration fails in JDK 1.6, 1.7 and 1.8, BRST time zone</action>
|
||||
|
|
|
@ -144,7 +144,7 @@ limitations under the License.
|
|||
<a href="findbugs.html" title="FindBugs Report">FindBugs Report</a>
|
||||
</li>
|
||||
<li class="none">
|
||||
<a href="apidocs/index.html" title="JavaDocs">JavaDocs</a>
|
||||
<a href="apidocs/index.html" title="Javadocs">Javadocs</a>
|
||||
</li>
|
||||
<li class="none">
|
||||
<a href="javancss.html" title="JavaNCSS Report">JavaNCSS Report</a>
|
||||
|
@ -168,7 +168,7 @@ limitations under the License.
|
|||
<a href="taglist.html" title="Tag List">Tag List</a>
|
||||
</li>
|
||||
<li class="none">
|
||||
<a href="testapidocs/index.html" title="Test JavaDocs">Test JavaDocs</a>
|
||||
<a href="testapidocs/index.html" title="Test Javadocs">Test Javadocs</a>
|
||||
</li>
|
||||
<li class="none">
|
||||
<a href="xref-test/index.html" title="Test Source Xref">Test Source Xref</a>
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -43,11 +43,11 @@ Note that Lang 3.0 (and subsequent versions) use a different package (<em>org.ap
|
|||
<!-- ================================================== -->
|
||||
<section name="Documentation">
|
||||
<p>
|
||||
The package descriptions in the <a href="javadocs/api-release/index.html">JavaDoc</a> give an overview of the available features
|
||||
The package descriptions in the <a href="javadocs/api-release/index.html">Javadoc</a> give an overview of the available features
|
||||
and various <a href="project-reports.html">project reports</a> are provided.
|
||||
</p>
|
||||
<p>
|
||||
The JavaDoc API documents are available online:
|
||||
The Javadoc API documents are available online:
|
||||
</p>
|
||||
<ul>
|
||||
<li>The <a href="javadocs/api-3.7/index.html">current stable release 3.7</a> [Java 7.0+]</li>
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -27,7 +27,7 @@ limitations under the License.
|
|||
<!-- $Id$ -->
|
||||
|
||||
<section name='User guide for Commons "Lang"'>
|
||||
Looking for the User Guide? It has been moved to the package <a href="javadocs/api-release/index.html">JavaDoc</a>
|
||||
Looking for the User Guide? It has been moved to the package <a href="javadocs/api-release/index.html">Javadoc</a>
|
||||
</section>
|
||||
|
||||
</body>
|
||||
|
|
Loading…
Reference in New Issue