Rename jet -> kotlin in idea: quickfixes

org.jetbrains.jet.plugin.quickfix -> org.jetbrains.kotlin.idea.quickfix
This commit is contained in:
Alexander Udalov
2015-01-12 17:05:06 +03:00
parent 17227bb4fe
commit 0b64f028b6
152 changed files with 712 additions and 354 deletions
@@ -1,4 +1,4 @@
// "class org.jetbrains.jet.plugin.quickfix.MoveWhenElseBranchFix" "false"
// "class org.jetbrains.kotlin.idea.quickfix.MoveWhenElseBranchFix" "false"
// ERROR: 'else' entry must be the last one in a when-expression
// ERROR: 'else' entry must be the last one in a when-expression
// WARNING: Unreachable code
@@ -13,4 +13,4 @@ fun foo() {
else -> { /* second else branch */ }
3 -> { /* some other code */ }
}
}
}