[LANG-1211] Fix Javadoc for StringUtils.startsWithAny(CharSequence,

CharSequence...)
This commit is contained in:
ggregory 2016-02-29 18:17:57 -08:00
parent 59c28bb25f
commit d1a3255600
2 changed files with 2 additions and 1 deletions

View File

@ -22,6 +22,7 @@
<body>
<release version="3.5" date="tba" description="tba">
<action issue="LANG-1211" type="update" dev="ggregory" due-to="Matthias Niehoff">Fix Javadoc for StringUtils.startsWithAny(CharSequence, CharSequence...)</action>
<action issue="LANG-1208" type="update" dev="bayard" due-to="Samuel Karp">StrSubstitutor can preserve escapes</action>
<action issue="LANG-1175" type="fix" dev="wikier" due-to="Benedikt Ritter">Remove Ant-based build</action>
<action issue="LANG-1192" type="add" dev="chas" due-to="Dominik Stadler">FastDateFormat support of the week-year component (uppercase 'Y')</action>

View File

@ -7967,7 +7967,7 @@ private static boolean startsWith(final CharSequence str, final CharSequence pre
*
* @param string the CharSequence to check, may be null
* @param searchStrings the CharSequences to find, may be null or empty
* @return {@code true} if the CharSequence starts with any of the the prefixes, case insensitive, or
* @return {@code true} if the CharSequence starts with any of the the prefixes, case sensitive, or
* both {@code null}
* @since 2.5
* @since 3.0 Changed signature from startsWithAny(String, String[]) to startsWithAny(CharSequence, CharSequence...)