mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
safe delete: ensure not to delete call qualifier (IDEA-135727)
This commit is contained in:
+9
@@ -0,0 +1,9 @@
|
||||
class Clazz {
|
||||
void callee(Clazz cl<caret>azz) {}
|
||||
}
|
||||
|
||||
class User {
|
||||
void caller(Clazz clazz) {
|
||||
clazz.callee(clazz);
|
||||
}
|
||||
}
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
class Clazz {
|
||||
void callee() {}
|
||||
}
|
||||
|
||||
class User {
|
||||
void caller(Clazz clazz) {
|
||||
clazz.callee();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user