If I have:
case 3:
return whatever;
default:
throw new IllegalArgumentException("oops");
and I run the google-java-format, it adds two spaces to the default and throw,
case 3:
return whatever;
default:
throw new IllegalArgumentException("oops");
This switch statement is inside a function defined in an enum.