Use isEmpty() in StringUtils.requireNullOrNotEmpty()

This commit is contained in:
Florian Schmaus 2019-10-30 11:56:55 +01:00
parent 6d1252755b
commit 2915101843
1 changed files with 1 additions and 1 deletions

View File

@ -535,7 +535,7 @@ public class StringUtils {
if (cs == null) { if (cs == null) {
return null; return null;
} }
if (cs.toString().isEmpty()) { if (isEmpty(cs)) {
throw new IllegalArgumentException(message); throw new IllegalArgumentException(message);
} }
return cs; return cs;