Skip to content

Commit

Permalink
0003968: Fix visibility issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredfrees committed May 16, 2019
1 parent 956ef13 commit 68d5dfa
Showing 1 changed file with 4 additions and 4 deletions.
Expand Up @@ -276,10 +276,10 @@ protected Map<String, String> getRedirectMap(SimpleRouterContext ctx) {
}

public static class Expression {
private static final String EQUALS = "=";
private static final String NOT_EQUALS = "!=";
private static final String CONTAINS = "contains";
private static final String NOT_CONTAINS = "not contains";
public static final String EQUALS = "=";
public static final String NOT_EQUALS = "!=";
public static final String CONTAINS = "contains";
public static final String NOT_CONTAINS = "not contains";

boolean hasEquals;
boolean hasNotEquals;
Expand Down

0 comments on commit 68d5dfa

Please sign in to comment.