palantir / palantir-java-format

A modern, lambda-friendly, 120 character Java formatter.
Apache License 2.0
478 stars 48 forks source link

extra indent in comments within switch #1123

Open esword opened 2 months ago

esword commented 2 months ago

What happened?

private static MyThing mapToTerminalStatus(MyThing thing) {
        return switch (thing) {
                // This comment is indented too far
            case IN_PROGRESS -> MyThing.SUCCEEDED;
            case SUCCEEDED, FAILED -> thing;
        };
    }

What did you want to happen?