Fixed a bug where Java enum body indentation was not correct

Added test for Java enum indentation
This commit is contained in:
Daniel Woznicki 2022-02-24 17:40:14 -08:00 committed by Stephan Seitz
parent 6fcf9b72ef
commit 1b47af43ce
3 changed files with 7 additions and 0 deletions

View file

@ -0,0 +1,4 @@
public enum Foo {
THING_A,
THING_C;
}