Skip to content

Commit

Permalink
Making handleAggregationResponse a private function.
Browse files Browse the repository at this point in the history
Signed-off-by: forestmvey <forestv@bitquilltech.com>
  • Loading branch information
forestmvey committed Jun 22, 2023
1 parent 3bbd105 commit 5d657c6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ private void addMetaDataFieldsToBuilder(
* Handle an aggregation response.
* @return Parsed and built return values from response.
*/
public Iterator<ExprValue> handleAggregationResponse() {
private Iterator<ExprValue> handleAggregationResponse() {
return exprValueFactory.getParser().parse(aggregations).stream().map(entry -> {
ImmutableMap.Builder<String, ExprValue> builder = new ImmutableMap.Builder<>();
for (Map.Entry<String, Object> value : entry.entrySet()) {
Expand Down

0 comments on commit 5d657c6

Please sign in to comment.