Files
kotlin-fork/nj2k/testData/newJ2k/comments/comments3.java
T
Dmitry Gridin 70185ba2a6 Formatter, NJ2K: fix indent for comments inside function literals
#KT-4194 Fixed
#KT-31881 Fixed
#KT-34673 Fixed
#KT-35152 Fixed
2019-11-29 16:28:59 +07:00

21 lines
456 B
Java
Vendored

public class Foo {
public void foo() {
System.out.println();
// comment
// comment 2
// comment 3
}
public void setState(Integer state) {
/*some comment 1/*/
/*some comment 2/*/
/*some comment 3/*/
/*some comment 4/*/
}
public void setState2(Integer state) { /*some comment 1/*/
/*some comment 2/*/
/*some comment 3/*/
/*some comment 4/*/
}
}