summaryrefslogtreecommitdiff
path: root/core/src/main/java/org/elasticsearch/search/suggest/completion/context
diff options
context:
space:
mode:
authorJason Tedor <jason@tedor.me>2017-02-03 09:46:44 -0500
committerGitHub <noreply@github.com>2017-02-03 09:46:44 -0500
commit9a0b216c36e3debb9d48374ced1e58d6568429bd (patch)
treea72505e6110632ae5cc85ababc3ff88feca5bf5a /core/src/main/java/org/elasticsearch/search/suggest/completion/context
parentea4eb06b0a815ef92e515f520bb0ec64805e4196 (diff)
Upgrade checkstyle to version 7.5
This commit upgrades the checkstyle configuration from version 5.9 to version 7.5, the latest version as of today. The main enhancement obtained via this upgrade is better detection of redundant modifiers. Relates #22960
Diffstat (limited to 'core/src/main/java/org/elasticsearch/search/suggest/completion/context')
-rw-r--r--core/src/main/java/org/elasticsearch/search/suggest/completion/context/ContextMappings.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/main/java/org/elasticsearch/search/suggest/completion/context/ContextMappings.java b/core/src/main/java/org/elasticsearch/search/suggest/completion/context/ContextMappings.java
index 5a7cfccf31..0cac17dbb8 100644
--- a/core/src/main/java/org/elasticsearch/search/suggest/completion/context/ContextMappings.java
+++ b/core/src/main/java/org/elasticsearch/search/suggest/completion/context/ContextMappings.java
@@ -115,7 +115,7 @@ public class ContextMappings implements ToXContent {
private final Map<String, Set<CharSequence>> contexts;
private final ParseContext.Document document;
- public TypedContextField(String name, String value, int weight, Map<String, Set<CharSequence>> contexts,
+ TypedContextField(String name, String value, int weight, Map<String, Set<CharSequence>> contexts,
ParseContext.Document document) {
super(name, value, weight);
this.contexts = contexts;