Skip to content

Commit ff5e320

Browse files
committed
Checking particular regex case test
1 parent 8a675e4 commit ff5e320

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

warehouse/query-core/src/main/java/datawave/core/iterators/DescendentFilterIterator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ public void setParentUids(String parentUids) {
103103
// now parse the parentUids into the map
104104
this.parentUidMap.clear();
105105
for (String shardTypeUid : parentUids.split(" ")) {
106-
String[] parts = StringUtils.split(shardTypeUid, '/');
106+
String[] parts = shardTypeUid.split("/");
107107
Map<String,Set<String>> dataTypes = this.parentUidMap.get(parts[0]);
108108
if (dataTypes == null) {
109109
dataTypes = new HashMap<>();

0 commit comments

Comments
 (0)