In some TestNG data providers, I have a static array initialization that looks like this:
return new Object[][] {
{"Foo", "Bar"},
{"Baz", "Quux"}
};
Since these are short lines, IntelliJ continues to reformat it on one line, but I want to keep it as it is for readability and future differences. Which option will Editor > Code Style > Javasave this for me?
source
share