fix compiler warning on access to static field using this

This commit is contained in:
javanna 2016-12-30 16:02:17 +01:00 committed by Luca Cavanna
parent df2acb3d9d
commit 74acffaae9

View File

@ -55,7 +55,7 @@ public class QueryParseContext implements ParseFieldMatcherSupplier {
}
public boolean isDeprecatedSetting(String setting) {
return this.CACHE.match(setting) || this.CACHE_KEY.match(setting);
return CACHE.match(setting) || CACHE_KEY.match(setting);
}
/**