Java to Kotlin converter: refactored code to drop ArrayInitializerExpression

This commit is contained in:
Valentin Kipyatkov
2014-06-06 17:29:40 +04:00
parent 60d9e53e9f
commit f652c50c8c
4 changed files with 41 additions and 76 deletions
@@ -1,4 +1,4 @@
val a = 0
val b = 0
val c = 0
val ds = doubleArray((a).toDouble(), (b).toDouble(), (c).toDouble())
val ds = doubleArray(a.toDouble(), b.toDouble(), c.toDouble())