Skip to content

Commit 38a2eba

Browse files
committed
Remove isBlank to support jdk8
1 parent c2973b5 commit 38a2eba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/jvm/clojure/storm/Utils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ public static List<String> prefixesForPropStartingWith(String propPrefix) {
346346
if (propKey.startsWith(propPrefix)) {
347347
String propVal = (String)propEntry.getValue();
348348

349-
if(propVal != null && !propVal.isBlank()) {
349+
if(propVal != null && !propVal.trim().equals("")) {
350350
String[] prefixes = propVal.split(",");
351351
for(String p : prefixes)
352352
foundPrefixes.add(p);

0 commit comments

Comments
 (0)