Adapted code cleanup feature implementation to the recent changes in IDEA
This commit is contained in:
+1
-1
@@ -14,7 +14,7 @@ val x = fun foo(x: String) { }
|
||||
fun foo() {
|
||||
@loop
|
||||
for (i in 1..100) {
|
||||
val v = oldFun2(i as Int)/* as Int*/
|
||||
val v = oldFun2(i as Int) as Int
|
||||
/* comment */
|
||||
continue@loop
|
||||
}
|
||||
|
||||
+1
-1
@@ -13,7 +13,7 @@ val x = fun(x: String) { }
|
||||
fun foo() {
|
||||
loop@
|
||||
for (i in 1..100) {
|
||||
val v = bar(i + 2)/* as Int*/
|
||||
val v = bar(i + 2)
|
||||
/* comment */
|
||||
continue@loop
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user