J2K: adding type arguments where they are needed and removing them where they are redundant

This commit is contained in:
Valentin Kipyatkov
2014-07-15 20:43:38 +04:00
parent f836278acc
commit 957ffb0313
31 changed files with 213 additions and 95 deletions
@@ -2,5 +2,5 @@ import java.util.*
import kotlin.List
class A {
var list: List<String> = ArrayList<String>()
var list: List<String> = ArrayList()
}