Get rid of local version of RemoveModifierFix

This commit is contained in:
Mikhail Glukhikh
2017-05-03 19:04:13 +03:00
parent 02345670b2
commit 1d722e01f0
9 changed files with 14 additions and 49 deletions
@@ -1,4 +1,4 @@
// "Remove redundant modality modifier" "true"
// "Remove redundant 'abstract' modifier" "true"
interface A {
<caret>abstract fun foo()
}
@@ -1,4 +1,4 @@
// "Remove redundant modality modifier" "true"
// "Remove redundant 'abstract' modifier" "true"
interface A {
<caret>fun foo()
}
+1 -1
View File
@@ -1,4 +1,4 @@
// "Remove redundant modality modifier" "true"
// "Remove redundant 'final' modifier" "true"
open class C {
<caret>final fun foo(){}
}
@@ -1,4 +1,4 @@
// "Remove redundant modality modifier" "true"
// "Remove redundant 'final' modifier" "true"
open class C {
fun foo(){}
}