Skip to content

Commit

Permalink
Fix public access to attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
tspoke committed May 4, 2017
1 parent 9146ce3 commit 7536af0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ public <T> Filter add(String key, FilterType type, T[] values) {
* Immutable KeyValuePair class
*/
public static class KeyValuePair<T> {
final FilterType filterType;
final T value;
public final FilterType filterType;
public final T value;

KeyValuePair(FilterType ft, T v){
value = v;
Expand Down

0 comments on commit 7536af0

Please sign in to comment.