Remove ConvertClassToSealedClassIntention

Relates to #KT-31502
This commit is contained in:
Dmitry Gridin
2019-05-27 17:11:39 +07:00
parent 1adc2ae4c8
commit dd03a81309
23 changed files with 0 additions and 190 deletions
@@ -1 +0,0 @@
org.jetbrains.kotlin.idea.intentions.ConvertClassToSealedClassIntention
@@ -1 +0,0 @@
<caret>abstract class Test private constructor()
@@ -1 +0,0 @@
sealed class Test
@@ -1,2 +0,0 @@
// IS_APPLICABLE: false
open class Test<caret>
@@ -1,2 +0,0 @@
// IS_APPLICABLE: false
class Test<caret> private constructor()
@@ -1,2 +0,0 @@
// IS_APPLICABLE: false
open class Test<caret> constructor()
@@ -1,5 +0,0 @@
// IS_APPLICABLE: false
open class Test<caret> private constructor() {
constructor(i: Int) : this() {
}
}
@@ -1,4 +0,0 @@
open class Test<caret> {
private constructor(i: Int) {
}
}
@@ -1,4 +0,0 @@
sealed class Test {
constructor(i: Int) {
}
}
@@ -1 +0,0 @@
open class Test<caret> private constructor()
@@ -1 +0,0 @@
sealed class Test
@@ -1,3 +0,0 @@
// IS_APPLICABLE: false
annotation class Inject
open class Test<caret> @Inject private constructor()
@@ -1 +0,0 @@
open class Test<caret> private constructor(s: String)
@@ -1 +0,0 @@
sealed class Test(s: String)
@@ -1,4 +0,0 @@
open class Test<caret> private constructor() {
private constructor(i: Int) : this() {
}
}
@@ -1,4 +0,0 @@
sealed class Test() {
constructor(i: Int) : this() {
}
}
@@ -1,6 +0,0 @@
// IS_APPLICABLE: false
annotation class Inject
open class Test<caret> private constructor() {
private @Inject constructor(i: Int) : this() {
}
}