SyntaxFix
Write A Post
Hire A Developer
Questions
StringUtils.isBlank() will also check for null, whereas this:
StringUtils.isBlank()
String foo = getvalue("foo"); if (foo.isEmpty())
will throw a NullPointerException if foo is null.
NullPointerException
foo