kemitix-checkstyle-ruleset/builder/src/main/resources/rules/WhitespaceBeforeArrayInitializer.md

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};