Add quick-fix for empty brackets after primary constructor
So #KT-18534 Fixed
This commit is contained in:
committed by
Mikhail Glukhikh
parent
69457ef3f1
commit
ed04b4debd
+1
-1
@@ -1,4 +1,4 @@
|
||||
// "class org.jetbrains.kotlin.idea.intentions.CreateKotlinSubClassIntention" "false"
|
||||
// ACTION: Create test
|
||||
|
||||
abstract class <caret>Base private constructor
|
||||
abstract class <caret>Base private constructor()
|
||||
@@ -0,0 +1,4 @@
|
||||
// "Add empty brackets after primary constructor" "true"
|
||||
|
||||
class Fruit private constructor<caret> {
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
// "Add empty brackets after primary constructor" "true"
|
||||
|
||||
class Fruit private constructor(<caret>) {
|
||||
}
|
||||
Reference in New Issue
Block a user