mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-25 14:25:04 +07:00
generate super call: insert at caret, fix read only status tracking (IDEA-166864)
This commit is contained in:
+12
@@ -0,0 +1,12 @@
|
||||
class s implements Runnable {
|
||||
public void run() {
|
||||
}
|
||||
}
|
||||
|
||||
class Over extends s {
|
||||
public void run() {
|
||||
if (true) {
|
||||
super.run();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user