mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 20:42:52 +07:00
StreamApiMigrationInspection: skip parentheses in loop bound
This commit is contained in:
+1
-1
@@ -5,7 +5,7 @@ import java.util.Arrays;
|
||||
public class Test {
|
||||
public void test(int bound) {
|
||||
Integer[][] arr = new Integer[bound][];
|
||||
for(int <caret>i = 0; i < arr.length; i++) {
|
||||
for(int <caret>i = 0; i < (arr.length); i++) {
|
||||
arr[i] = new Integer[] {i};
|
||||
}
|
||||
System.out.println(Arrays.toString(arr));
|
||||
|
||||
Reference in New Issue
Block a user