From f716a86f40072ce266d5604d17262941e09d0045 Mon Sep 17 00:00:00 2001 From: Ryan Ernst Date: Tue, 16 Aug 2016 11:25:34 -0700 Subject: [PATCH] Add comment about making parser members private instead of public --- .../main/java/org/elasticsearch/search/SearchRequestParsers.java | 1 + 1 file changed, 1 insertion(+) diff --git a/core/src/main/java/org/elasticsearch/search/SearchRequestParsers.java b/core/src/main/java/org/elasticsearch/search/SearchRequestParsers.java index 911cc03fa84..83eebd125d8 100644 --- a/core/src/main/java/org/elasticsearch/search/SearchRequestParsers.java +++ b/core/src/main/java/org/elasticsearch/search/SearchRequestParsers.java @@ -31,6 +31,7 @@ import org.elasticsearch.search.suggest.Suggesters; public class SearchRequestParsers { // TODO: this class should be renamed to SearchRequestParser, and all the parse // methods split across RestSearchAction and SearchSourceBuilder should be moved here + // TODO: make all members private once parsing functions are moved here // TODO: IndicesQueriesRegistry should be removed and just have the map of query parsers here /**