From 03bbe0466692242dcc6661532f4b9c934e2a3a87 Mon Sep 17 00:00:00 2001 From: Preetesh2110 <110464118+Preetesh2110@users.noreply.github.com> Date: Wed, 3 Jul 2024 18:48:41 +0530 Subject: [PATCH] Fix scalaStyle issues --- .../apache/gluten/execution/HashAggregateExecTransformer.scala | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/backends-velox/src/main/scala/org/apache/gluten/execution/HashAggregateExecTransformer.scala b/backends-velox/src/main/scala/org/apache/gluten/execution/HashAggregateExecTransformer.scala index a80acb9949fc..f13fc4911b17 100644 --- a/backends-velox/src/main/scala/org/apache/gluten/execution/HashAggregateExecTransformer.scala +++ b/backends-velox/src/main/scala/org/apache/gluten/execution/HashAggregateExecTransformer.scala @@ -396,7 +396,8 @@ abstract class HashAggregateExecTransformer( childNodes.add(expressionNode) } } - exprNodes.add(getRowConstructNode(args, childNodes, newInputAttributes.toSeq, aggFunc)) + exprNodes.add( + getRowConstructNode(args, childNodes, newInputAttributes.toSeq, aggFunc)) case other => throw new GlutenNotSupportException(s"$other is not supported.") }