rhodo commented on code in PR #16589:
URL: https://github.com/apache/pinot/pull/16589#discussion_r2275446810
##########
pinot-core/src/test/java/org/apache/pinot/core/operator/transform/function/BaseTransformFunctionTest.java:
##########
@@ -205,8 +206,8 @@ public void setUp()
Random random = new Random();
for (int j = 0; j < VECTOR_DIM_SIZE; j++) {
- _vector1Values[i][j] = random.nextFloat();;
- _vector2Values[i][j] = random.nextFloat();;
+ _vector1Values[i][j] = random.nextFloat();
Review Comment:
```suggestion
_vector1Values[i][j] = random.nextFloat();;
```
##########
pinot-core/src/test/java/org/apache/pinot/core/operator/transform/function/BaseTransformFunctionTest.java:
##########
@@ -205,8 +206,8 @@ public void setUp()
Random random = new Random();
for (int j = 0; j < VECTOR_DIM_SIZE; j++) {
- _vector1Values[i][j] = random.nextFloat();;
- _vector2Values[i][j] = random.nextFloat();;
+ _vector1Values[i][j] = random.nextFloat();
+ _vector2Values[i][j] = random.nextFloat();
Review Comment:
```suggestion
_vector2Values[i][j] = random.nextFloat();;
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]