I have this code:
private int a;
private int b;
private int c;
But when I reformat it with IntelliJ, it changes to this:
private int a;
private int b;
private int c;
How would I allow it to keep the blank lines?
But this code:
private boolean a;
private String s;
Should stay as it is.