singhpk234 commented on code in PR #4683:
URL: https://github.com/apache/iceberg/pull/4683#discussion_r864417258
##########
spark/v3.2/spark/src/test/java/org/apache/iceberg/spark/source/TestSparkReaderDeletes.java:
##########
@@ -80,9 +88,9 @@ public TestSparkReaderDeletes(boolean vectorized) {
@Parameterized.Parameters(name = "vectorized = {0}")
public static Object[][] parameters() {
- return new Object[][] {
- new Object[] {false},
- new Object[] {true}
+ return new Object[][]{
+ new Object[]{false},
+ new Object[]{true}
Review Comment:
Ah I see, my IDE (using Intellij) here doesn't reformat this though, I am
using this
[iceberg-java-style](https://iceberg.apache.org/contribute/#setting-up-ide-and-code-style)
. either ways, I think it should be fine if it's aligned to
[iceberg-java-style](https://iceberg.apache.org/contribute/#setting-up-ide-and-code-style)
:) !!!
Also just realized, we can re-write this to as well :
```java
return new Object[] {
new Object[] {false, true};
}
```
--
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]