fix StringUtils.upperCase(String str) java doc

This commit is contained in:
Nikhil Kumar 2022-06-12 07:35:10 +05:30 committed by Bruno P. Kinoshita
parent 3228ab0459
commit ef07c645ef

View File

@ -9446,7 +9446,7 @@ public static String unwrap(final String str, final String wrapToken) {
*
* <p><strong>Note:</strong> As described in the documentation for {@link String#toUpperCase()},
* the result of this method is affected by the current locale.
* For platform-independent case transformations, the method {@link #lowerCase(String, Locale)}
* For platform-independent case transformations, the method {@link #upperCase(String, Locale)}
* should be used with a specific locale (e.g. {@link Locale#ENGLISH}).</p>
*
* @param str the String to upper case, may be null