Skip to content
Snippets Groups Projects
Commit b9ad898b authored by René Schöne's avatar René Schöne
Browse files

replace isBlank with java8 compatible method

parent b78beaf5
No related branches found
No related tags found
No related merge requests found
......@@ -59,7 +59,7 @@ aspect Helpers {
if (value == null || value.equals("null")) {
return StringElement.of("null");
}
if (value.isBlank()) {
if (value.trim().isEmpty()) {
return StringElement.of(value);
}
// simple test, check for special characters
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment