StringUtils.uncapitalize is not actually nullable

Issue: SPR-15540
This commit is contained in:
Juergen Hoeller
2017-07-05 17:56:37 +02:00
parent 59c26f65ba
commit 398322139a

View File

@@ -532,7 +532,6 @@ public abstract class StringUtils {
* @param str the {@code String} to uncapitalize
* @return the uncapitalized {@code String}
*/
@Nullable
public static String uncapitalize(String str) {
return changeFirstCharacterCase(str, false);
}