When automatically creating a foreach loop, IDEA creates it in the following form:
for (double a : array) { //do something }
Where and how can I change the settings so that IDEA automatically writes a loop condition on a single line?
for (double a : array) { //do somethinfg }