mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-13 21:55:01 +07:00
Handle compact constructor in regular class: quick-fix to add () (IDEA-228460)
GitOrigin-RevId: c019e19e8023c0209f6e5ed54f8a486689bb0e0a
This commit is contained in:
committed by
intellij-monorepo-bot
parent
e29a0e3102
commit
662cb5deae
+5
@@ -0,0 +1,5 @@
|
||||
class NotRecord {
|
||||
public <error descr="Parameter list expected">NotRecord</error> {
|
||||
|
||||
}
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
// "Insert '()'" "true"
|
||||
class NotRecord {
|
||||
public NotRecord() {
|
||||
|
||||
}
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
// "Insert '()'" "true"
|
||||
class NotRecord {
|
||||
public <caret>NotRecord {
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user