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
@@ -1 +1 @@
val a = array<Double>(1.0, 2.0, 3.0)
val a = array(1.0, 2.0, 3.0)
@@ -1 +1 @@
val a = array<IntArray>(intArray(1, 2, 3), intArray(4, 5, 6), intArray(7, 8, 9))
val a = array(intArray(1, 2, 3), intArray(4, 5, 6), intArray(7, 8, 9))