Intellij keeps formatting my switch case as follows:
switch (enumVal) { case X: //do stuff break; case Y: //do stuff break; } But I would like it to be formatted like Sun style:
switch (enumVal) { case X: //do stuff break; case Y: //do stuff break; } Is there a way to config that?