Drop pre-1.0 whole-project syntax migration actions
This commit is contained in:
Vendored
-1
@@ -1 +0,0 @@
|
||||
class Q private constructor()
|
||||
-15
@@ -1,15 +0,0 @@
|
||||
// "Add missing 'constructor' keyword in whole project" "true"
|
||||
// ERROR: Use 'constructor' keyword after modifiers of primary constructor
|
||||
// ERROR: Use 'constructor' keyword after modifiers of primary constructor
|
||||
// ERROR: Use 'constructor' keyword after modifiers of primary constructor
|
||||
|
||||
annotation class Ann(val x: Int = 1)
|
||||
|
||||
class A @Ann(1)private constructor(x: Int) {
|
||||
inner class B() // do not insert here
|
||||
inner class C protected constructor() {
|
||||
fun foo() {
|
||||
class Local private constructor()
|
||||
}
|
||||
}
|
||||
}
|
||||
Vendored
-15
@@ -1,15 +0,0 @@
|
||||
// "Add missing 'constructor' keyword in whole project" "true"
|
||||
// ERROR: Use 'constructor' keyword after modifiers of primary constructor
|
||||
// ERROR: Use 'constructor' keyword after modifiers of primary constructor
|
||||
// ERROR: Use 'constructor' keyword after modifiers of primary constructor
|
||||
|
||||
annotation class Ann(val x: Int = 1)
|
||||
|
||||
class A @Ann(1)<caret>private (x: Int) {
|
||||
inner class B() // do not insert here
|
||||
inner class C protected () {
|
||||
fun foo() {
|
||||
class Local private()
|
||||
}
|
||||
}
|
||||
}
|
||||
Vendored
-1
@@ -1 +0,0 @@
|
||||
class Q private()
|
||||
Reference in New Issue
Block a user