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