Merge branch 'pr-823'

This closes #823
This commit is contained in:
Bruno P. Kinoshita 2021-10-31 11:59:16 +13:00
commit 1b962a4a7a
2 changed files with 4 additions and 3 deletions

View File

@ -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 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 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="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>
<release version="3.12.0" date="2021-02-26" description="New features and bug fixes (Java 8)."> <release version="3.12.0" date="2021-02-26" description="New features and bug fixes (Java 8).">

View File

@ -8589,7 +8589,7 @@ public class StringUtils {
* </pre> * </pre>
* *
* @param str the String to get a substring from, may be null * @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, * @return the substring after the first occurrence of the separator,
* {@code null} if null String input * {@code null} if null String input
* @since 3.11 * @since 3.11
@ -8668,7 +8668,7 @@ public class StringUtils {
* </pre> * </pre>
* *
* @param str the String to get a substring from, may be null * @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, * @return the substring after the last occurrence of the separator,
* {@code null} if null String input * {@code null} if null String input
* @since 3.11 * @since 3.11
@ -8750,7 +8750,7 @@ public class StringUtils {
* </pre> * </pre>
* *
* @param str the String to get a substring from, may be null * @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 * @return the substring before the first occurrence of the separator, {@code null} if null String input
* @since 3.12.0 * @since 3.12.0
*/ */