Made block comment indent @auto so that new lines line up nicely with existing comment block

Previous indentation:
    /**
    *
    */

    New indentation:
    /**
     *
     */
This commit is contained in:
Daniel Woznicki 2022-02-28 16:31:11 -08:00 committed by Stephan Seitz
parent 9f78c9f0ad
commit 3d6f2637a2
3 changed files with 6 additions and 3 deletions

View file

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