KT-19943: Remove redundant type conversions in J2kPostProcessing
Don't remove them in converter itself
This commit is contained in:
+1
-1
@@ -8,6 +8,6 @@ internal class Test {
|
||||
putInt(b.toInt())
|
||||
|
||||
val b2 = 10
|
||||
putInt(b2.toInt())
|
||||
putInt(b2)
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -3,6 +3,6 @@ internal class Test {
|
||||
|
||||
fun test() {
|
||||
val b = 10
|
||||
putInt(b.toInt())
|
||||
putInt(b)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user