Skip to content

Commit

Permalink
Fix Checkstyle errors
Browse files Browse the repository at this point in the history
  • Loading branch information
kyakdan committed Oct 19, 2022
1 parent e2ecc02 commit 1da4f86
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,5 @@ public interface JXPathClassFilter {
* passed.
* @return true if the java class can be exposed via xpath, false otherwise
*/
public boolean exposeToXPath(String className);
boolean exposeToXPath(String className);
}
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
* @version $Revision$ $Date$
*/
public class JXPathFilter implements JXPathClassFilter {
Set<String> allowedClassesList = null;
private Set<String> allowedClassesList = null;

public JXPathFilter() {
init();
Expand Down

0 comments on commit 1da4f86

Please sign in to comment.