Skip to content

Commit 6e3cf37

Browse files
committed
remove useless
1 parent 0c32d11 commit 6e3cf37

File tree

1 file changed

+0
-2
lines changed
  • iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/pipe/datastructure/pattern

1 file changed

+0
-2
lines changed

iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/pipe/datastructure/pattern/TreePattern.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -847,7 +847,6 @@ private boolean checkCoverage(final TrieNode node, final String[] pathNodes, fin
847847
}
848848

849849
// 4. Single Level Wildcard (*) in Trie
850-
// Access direct field instead of map lookup
851850
if (node.wildcardNode != null) {
852851
return checkCoverage(node.wildcardNode, pathNodes, index + 1);
853852
}
@@ -902,7 +901,6 @@ private boolean checkOverlap(final TrieNode node, final String[] pathNodes, fina
902901
}
903902

904903
// 5b. Check '*' in Trie (matches specific query node)
905-
// Access direct field instead of map lookup
906904
return node.wildcardNode != null && checkOverlap(node.wildcardNode, pathNodes, index + 1);
907905
}
908906
}

0 commit comments

Comments
 (0)