J2K: preserving line breaks between parameters
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
class C {
|
||||
public void foo1(int p1, int p2) {
|
||||
}
|
||||
|
||||
public void foo2(
|
||||
int p1,
|
||||
int p2) {
|
||||
}
|
||||
|
||||
public void foo3(int p1,
|
||||
int p2) {
|
||||
}
|
||||
|
||||
public void foo4(
|
||||
int p1, int p2,
|
||||
int p3, int p4
|
||||
) {
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user