Modified Java indent rules to stop ignoring block comments because javadoc blocks were defaulting to indent 0

This commit is contained in:
Daniel Woznicki 2022-02-28 14:22:20 -08:00 committed by Stephan Seitz
parent bf2493f5e1
commit e23f5d48be
3 changed files with 7 additions and 1 deletions

View file

@ -0,0 +1,5 @@
public class Foo {
/**
*/
void foo() {}
}