aboutsummaryrefslogtreecommitdiffstats
path: root/tests/indent/java
Commit message (Collapse)AuthorAgeFilesLines
* Fixed incorrect Java indentation for method chainingDaniel Woznicki2022-04-041-0/+6
|
* Made block comment indent @auto so that new lines line up nicely with ↵Daniel Woznicki2022-03-011-1/+1
| | | | | | | | | | | | | | existing comment block Previous indentation: /** * */ New indentation: /** * */
* Added test case for broken trees, plus partial test coverageDaniel Woznicki2022-03-011-0/+6
|
* Modified Java indent rules to stop ignoring block comments because javadoc ↵Daniel Woznicki2022-03-011-0/+5
| | | | blocks were defaulting to indent 0
* Added fix for Java interfaces not being indented properlyDaniel Woznicki2022-03-011-0/+2
|
* Fixed a bug where indentation was not correct for class/enum bodies that had ↵Daniel Woznicki2022-02-252-0/+6
| | | | an annotation
* Fixed a bug where Java enum body indentation was not correctDaniel Woznicki2022-02-251-0/+4
| | | | Added test for Java enum indentation
* Added fix for incorrect Java indentation after a closing "}" in a method ↵Daniel Woznicki2022-02-252-0/+8
declaration Added tests for Java indentation, including one for issue 2571