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
@@ -2,7 +2,10 @@
import java.util.*
class A<T> {
fun foo(nonMutableCollection: Collection<String>, mutableCollection: MutableCollection<String>, mutableSet: MutableSet<T>, mutableMap: MutableMap<String, T>) {
fun foo(nonMutableCollection: Collection<String>,
mutableCollection: MutableCollection<String>,
mutableSet: MutableSet<T>,
mutableMap: MutableMap<String, T>) {
mutableCollection.addAll(nonMutableCollection)
mutableSet.add(mutableMap.remove("a"))
}