Skip to content

Commit 74acffa

Browse files
committed
fix compiler warning on access to static field using this
1 parent df2acb3 commit 74acffa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/java/org/elasticsearch/index/query/QueryParseContext.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public XContentParser parser() {
5555
}
5656

5757
public boolean isDeprecatedSetting(String setting) {
58-
return this.CACHE.match(setting) || this.CACHE_KEY.match(setting);
58+
return CACHE.match(setting) || CACHE_KEY.match(setting);
5959
}
6060

6161
/**

0 commit comments

Comments
 (0)