J2K: preserving line breaks between parameters

This commit is contained in:
Valentin Kipyatkov
2015-06-16 13:42:15 +03:00
parent 1e988028a9
commit fefb828fae
10 changed files with 108 additions and 5 deletions
@@ -0,0 +1,23 @@
class C1 {
C1(int arg1,
int arg2,
int arg3) {
}
C1(int x,
int y) {
this(x, x + y, 0);
}
}
class C2 {
private int arg1;
private int arg2;
C2(int arg1,
int arg2,
int arg3) {
this.arg1 = arg1;
this.arg2 = arg2;
}
}