fix compiler warning on access to static field using `this`
This commit is contained in:
parent
df2acb3d9d
commit
74acffaae9
|
@ -55,7 +55,7 @@ public class QueryParseContext implements ParseFieldMatcherSupplier {
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean isDeprecatedSetting(String setting) {
|
public boolean isDeprecatedSetting(String setting) {
|
||||||
return this.CACHE.match(setting) || this.CACHE_KEY.match(setting);
|
return CACHE.match(setting) || CACHE_KEY.match(setting);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue