We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a675e4 commit ff5e320Copy full SHA for ff5e320
warehouse/query-core/src/main/java/datawave/core/iterators/DescendentFilterIterator.java
@@ -103,7 +103,7 @@ public void setParentUids(String parentUids) {
103
// now parse the parentUids into the map
104
this.parentUidMap.clear();
105
for (String shardTypeUid : parentUids.split(" ")) {
106
- String[] parts = StringUtils.split(shardTypeUid, '/');
+ String[] parts = shardTypeUid.split("/");
107
Map<String,Set<String>> dataTypes = this.parentUidMap.get(parts[0]);
108
if (dataTypes == null) {
109
dataTypes = new HashMap<>();
0 commit comments