Skip to content

Commit

Permalink
making it pretty
Browse files Browse the repository at this point in the history
  • Loading branch information
aman-bansal committed Jun 17, 2024
1 parent e1dcdf1 commit 27792ba
Showing 1 changed file with 12 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -200,15 +200,25 @@ private static class SelectionArguments {
AttributeExpression attributeExpression,
AttributeModelMetricAggregationType aggregationType,
List<Object> aggregationArguments) {
this(SelectionType.AGGREGATION, attributeExpression, aggregationType, aggregationArguments, null);
this(
SelectionType.AGGREGATION,
attributeExpression,
aggregationType,
aggregationArguments,
null);
}

SelectionArguments(
AttributeExpression attributeExpression,
AttributeModelMetricAggregationType aggregationType,
List<Object> aggregationArguments,
String alias) {
this(SelectionType.AGGREGATION, attributeExpression, aggregationType, aggregationArguments, alias);
this(
SelectionType.AGGREGATION,
attributeExpression,
aggregationType,
aggregationArguments,
alias);
}
}
}

0 comments on commit 27792ba

Please sign in to comment.