We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f09e24 commit 9bcc84cCopy full SHA for 9bcc84c
rewrite-xml/src/main/java/org/openrewrite/xml/search/FindTags.java
@@ -33,7 +33,7 @@ public class FindTags extends Recipe {
33
@Option(displayName = "XPath",
34
description = "An XPath expression used to find matching tags.",
35
example = "//dependencies/dependency")
36
- String xpath;
+ String xPath;
37
38
@Override
39
public String getDisplayName() {
@@ -47,7 +47,7 @@ public String getDescription() {
47
48
49
public TreeVisitor<?, ExecutionContext> getVisitor() {
50
- XPathMatcher matcher = new XPathMatcher(xpath);
+ XPathMatcher matcher = new XPathMatcher(xPath);
51
return new XmlVisitor<ExecutionContext>() {
52
53
0 commit comments