mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
add method qualifier fix should be not available for unresolved qualified method call
This commit is contained in:
+15
@@ -0,0 +1,15 @@
|
||||
class X {
|
||||
public class ObjectValue {
|
||||
public ObjectValue get(String name) { return null; }
|
||||
}
|
||||
|
||||
public class JsonObjectValue extends ObjectValue {
|
||||
public int sizeInBytes() { return 0; }
|
||||
}
|
||||
|
||||
{
|
||||
JsonObjectValue obj = null;
|
||||
obj.get("href").siz<caret>eInBytes();
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user