mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-28 04:37:32 +07:00
IDEA-50590 When completing a field with qualifier casting, caret is placed inside typecast
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
public class TestClass {
|
||||
int abc;
|
||||
|
||||
public TestClass create(Object o) {
|
||||
if (o instanceof TestClass) {
|
||||
o.ab<caret>
|
||||
}
|
||||
}
|
||||
}
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
public class TestClass {
|
||||
int abc;
|
||||
|
||||
public TestClass create(Object o) {
|
||||
if (o instanceof TestClass) {
|
||||
((TestClass) o).abc<caret>
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user