237 B
237 B
This checks enforces whitespace before array initializer.
Valid:
int[] ints = new int[] {
0, 1, 2, 3
};
int[] tab = new int[]
{0, 1, 2, 3};
Invalid:
int[] ints = new int[]{0, 1, 2, 3};