I've noticed that with NB 15 the formatting of try with resources lines is
broken. NB insists on putting everything on one line. For example if I have:
try (Resource r1 = getResource();
Resource r2 = getResource()) {
}
NB will put everything on one line when formatting the code:
try (Resource r1 = getResource(); Resource r2 = getResource()) {
}
This never happened with NB 12 and prior versions. I've tried toggling
Multiline Alignment, but it doesn't do anything. Is there another setting that
controls this behavior?
Wyatt