We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
XPathMatcher
1 parent 1fc1909 commit 88d31ffCopy full SHA for 88d31ff
2 files changed
rewrite-xml/src/main/java/org/openrewrite/xml/XPathCompiler.java
@@ -22,6 +22,7 @@
22
import org.openrewrite.xml.internal.grammar.XPathLexer;
23
import org.openrewrite.xml.internal.grammar.XPathParser;
24
25
+import java.util.ArrayList;
26
import java.util.List;
27
28
/**
@@ -254,7 +255,7 @@ private static CompiledStep[] normalizeParentSteps(CompiledStep[] steps) {
254
255
}
256
257
// Build normalized step list
- java.util.ArrayList<CompiledStep> result = new java.util.ArrayList<>();
258
+ ArrayList<CompiledStep> result = new ArrayList<>();
259
int i = 0;
260
261
while (i < steps.length) {
0 commit comments