Skip to content

Commit

Permalink
Put "xPath" parameter name back to appropriate camel casing now that …
Browse files Browse the repository at this point in the history
…we have fixed the serialization issue on the backend
  • Loading branch information
sambsnyd committed Jun 10, 2024
1 parent 6f09e24 commit 9bcc84c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class FindTags extends Recipe {
@Option(displayName = "XPath",
description = "An XPath expression used to find matching tags.",
example = "//dependencies/dependency")
String xpath;
String xPath;

@Override
public String getDisplayName() {
Expand All @@ -47,7 +47,7 @@ public String getDescription() {

@Override
public TreeVisitor<?, ExecutionContext> getVisitor() {
XPathMatcher matcher = new XPathMatcher(xpath);
XPathMatcher matcher = new XPathMatcher(xPath);
return new XmlVisitor<ExecutionContext>() {

@Override
Expand Down

0 comments on commit 9bcc84c

Please sign in to comment.