Skip to content

Commit 1da4f86

Browse files
committed
Fix Checkstyle errors
1 parent e2ecc02 commit 1da4f86

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/java/org/apache/commons/jxpath/ri/JXPathClassFilter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,5 @@ public interface JXPathClassFilter {
3737
* passed.
3838
* @return true if the java class can be exposed via xpath, false otherwise
3939
*/
40-
public boolean exposeToXPath(String className);
40+
boolean exposeToXPath(String className);
4141
}

src/main/java/org/apache/commons/jxpath/ri/JXPathFilter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
* @version $Revision$ $Date$
3131
*/
3232
public class JXPathFilter implements JXPathClassFilter {
33-
Set<String> allowedClassesList = null;
33+
private Set<String> allowedClassesList = null;
3434

3535
public JXPathFilter() {
3636
init();

0 commit comments

Comments
 (0)