KT-19943: Remove redundant type conversions in J2kPostProcessing

Don't remove them in converter itself
This commit is contained in:
Simon Ogorodnik
2017-11-13 15:06:28 +03:00
parent 083c3d8a5d
commit 0560ba7929
5 changed files with 4 additions and 17 deletions
+1 -1
View File
@@ -8,6 +8,6 @@ internal class Test {
putInt(b.toInt())
val b2 = 10
putInt(b2.toInt())
putInt(b2)
}
}
+1 -1
View File
@@ -3,6 +3,6 @@ internal class Test {
fun test() {
val b = 10
putInt(b.toInt())
putInt(b)
}
}