Reports multiple variables declared in a single declaration. Some coding standards prohibit such declarations.

Use the first checkbox below to ignore multiple variables declared in the initialization of a 'for' loop statement, e.g.:

for (int i = 0, max = list.size(); i < max; i++) {}

Use the second checkbox below to only warn when variables with different array dimensions are declared in a single declaration, e.g.:

String s = "", array[];

New in 2019.2