This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-jxpath.git
commit b1ee4b28fc9634968ab7b2b9941df59a92aba1d9 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sun Jun 23 10:00:55 2024 -0400 Fix PMD UnnecessaryFullyQualifiedName --- src/main/java/org/apache/commons/jxpath/JXPathContext.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/jxpath/JXPathContext.java b/src/main/java/org/apache/commons/jxpath/JXPathContext.java index ef45659..f91596f 100644 --- a/src/main/java/org/apache/commons/jxpath/JXPathContext.java +++ b/src/main/java/org/apache/commons/jxpath/JXPathContext.java @@ -665,7 +665,7 @@ public abstract class JXPathContext { */ public static CompiledExpression compile(final String xpath) { if (compilationContext == null) { - compilationContext = JXPathContext.newContext(null); + compilationContext = newContext(null); } return compilationContext.compilePath(xpath); }