Some coding standards prohibit such declarations.
Example:
int x = 1, y = 2;
After the quick-fix is applied:
int x = 1;
int y = 2;
Configure the inspection:
for (int i = 0, max = list.size(); i > max; i++) {}
String s = "", array[];
New in 2019.2