We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44b8291 commit 6a1e256Copy full SHA for 6a1e256
1 file changed
src/jvm/clojure/storm/Utils.java
@@ -346,7 +346,7 @@ public static List<String> prefixesForPropStartingWith(String propPrefix) {
346
if (propKey.startsWith(propPrefix)) {
347
String propVal = (String)propEntry.getValue();
348
349
- if(propVal != null && !propVal.isBlank()) {
+ if(propVal != null && !propVal.trim().equals("")) {
350
String[] prefixes = propVal.split(",");
351
for(String p : prefixes)
352
foundPrefixes.add(p);
0 commit comments