Skip to content

Commit

Permalink
#39 public matcher
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Aug 24, 2022
1 parent de183f1 commit 0bea49c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/jcabi/matchers/XPathMatcher.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
*/
@ToString
@EqualsAndHashCode(callSuper = false, of = "xpath")
final class XPathMatcher<T> extends TypeSafeMatcher<T> {
public final class XPathMatcher<T> extends TypeSafeMatcher<T> {

/**
* The XPath to use.
Expand All @@ -63,7 +63,7 @@ final class XPathMatcher<T> extends TypeSafeMatcher<T> {
* @param query The query
* @param ctx The context
*/
XPathMatcher(final String query, final NamespaceContext ctx) {
public XPathMatcher(final String query, final NamespaceContext ctx) {
super();
this.xpath = query;
this.context = ctx;
Expand Down

0 comments on commit 0bea49c

Please sign in to comment.