commit
1b962a4a7a
|
@ -108,6 +108,7 @@ The <action> type attribute can be add,update,fix,remove.
|
|||
<action type="update" dev="ggregory" due-to="Dependabot">Bump maven-pmd-plugin from 3.14.0 to 3.15.0 #802.</action>
|
||||
<action type="update" dev="ggregory" due-to="Dependabot">Bump biz.aQute.bndlib from 5.3.0 to 6.0.0 #814.</action>
|
||||
<action type="update" dev="ggregory" due-to="Dependabot">Bump actions/checkout from 2.3.4 to 2.3.5 #819.</action>
|
||||
<action type="update" dev="kinow" due-to="Roland Kreuzer">Javadoc for StringUtils.substringBefore(String str, int separator) doesn't mention that the separator is an int.</action>
|
||||
</release>
|
||||
|
||||
<release version="3.12.0" date="2021-02-26" description="New features and bug fixes (Java 8).">
|
||||
|
|
|
@ -8589,7 +8589,7 @@ public class StringUtils {
|
|||
* </pre>
|
||||
*
|
||||
* @param str the String to get a substring from, may be null
|
||||
* @param separator the character to search.
|
||||
* @param separator the character (Unicode code point) to search.
|
||||
* @return the substring after the first occurrence of the separator,
|
||||
* {@code null} if null String input
|
||||
* @since 3.11
|
||||
|
@ -8668,7 +8668,7 @@ public class StringUtils {
|
|||
* </pre>
|
||||
*
|
||||
* @param str the String to get a substring from, may be null
|
||||
* @param separator the String to search for, may be null
|
||||
* @param separator the character (Unicode code point) to search.
|
||||
* @return the substring after the last occurrence of the separator,
|
||||
* {@code null} if null String input
|
||||
* @since 3.11
|
||||
|
@ -8750,7 +8750,7 @@ public class StringUtils {
|
|||
* </pre>
|
||||
*
|
||||
* @param str the String to get a substring from, may be null
|
||||
* @param separator the String to search for, may be null
|
||||
* @param separator the character (Unicode code point) to search.
|
||||
* @return the substring before the first occurrence of the separator, {@code null} if null String input
|
||||
* @since 3.12.0
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue