Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
Signed-off-by: Siddhant Deshmukh <deshsid@amazon.com>
  • Loading branch information
deshsidd committed Jun 25, 2024
1 parent a4ad58e commit cdce692
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public QueryBuilderVisitor getChildVisitor(BooleanClause.Occur occur) {

/**
* Convert query builder tree to json
* @return
* @return json query builder tree as a string
*/
public String toJson() {
StringBuilder outputBuilder = new StringBuilder("{\"type\":\"").append(queryType.get()).append("\"");
Expand All @@ -82,7 +82,7 @@ public String toJson() {
/**
* Pretty print the query builder tree
* @param indent indent size
* @return
* @return Query builder tree as a pretty string
*/
public String prettyPrintTree(String indent) {
StringBuilder outputBuilder = new StringBuilder(indent).append(queryType.get()).append("\n");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class SearchQueryAggregationCategorizer {

/**
* Constructor for SearchQueryAggregationCategorizer
* @param searchQueryCounters
* @param searchQueryCounters Object containing all query counters
*/
public SearchQueryAggregationCategorizer(SearchQueryCounters searchQueryCounters) {
this.searchQueryCounters = searchQueryCounters;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public final class SearchQueryCategorizer {

/**
* Constructor for SearchQueryCategorizor
* @param metricsRegistry
* @param metricsRegistry opentelemetry metrics registry
*/
public SearchQueryCategorizer(MetricsRegistry metricsRegistry) {
searchQueryCounters = new SearchQueryCounters(metricsRegistry);
Expand Down

0 comments on commit cdce692

Please sign in to comment.