70185ba2a6
#KT-4194 Fixed #KT-31881 Fixed #KT-34673 Fixed #KT-35152 Fixed
13 lines
295 B
Java
Vendored
13 lines
295 B
Java
Vendored
public class Foo {
|
|
private Integer someInt;
|
|
public void setState(Integer state) {
|
|
//some comment 1
|
|
someInt = state;
|
|
//some comment 2
|
|
if (state == 2)
|
|
System.out.println("2");
|
|
}
|
|
public Integer getState() {
|
|
return someInt;
|
|
}
|
|
} |