You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Similar to the recipe which replaces the StringUtils#isEmpty(String) and StringUtils#isNotEmpty(String) [1], a recipe would be helpful which replaces StringUtils#isBlank(CharSequence) and StringUtils#isNotBlank(CharSequence) with its plain Java equivalent too.
What precondition(s) should be checked before applying this recipe?
At least Java 11 is required due to the availability of java.lang.String#isBlank().
What problem are you trying to solve?
Similar to the recipe which replaces the
StringUtils#isEmpty(String)
andStringUtils#isNotEmpty(String)
[1], a recipe would be helpful which replacesStringUtils#isBlank(CharSequence)
andStringUtils#isNotBlank(CharSequence)
with its plain Java equivalent too.What precondition(s) should be checked before applying this recipe?
At least Java 11 is required due to the availability of
java.lang.String#isBlank()
.Describe the situation before applying the recipe
Describe the situation after applying the recipe
The text was updated successfully, but these errors were encountered: