mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-14 17:25:38 +07:00
GuessManagerImpl: minimal assignment handling
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
class Foo {
|
||||
void test(Object obj) {
|
||||
if(!(obj instanceof String)) {
|
||||
obj = "foo";
|
||||
}
|
||||
obj.subst<caret>
|
||||
}
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
class Foo {
|
||||
void test(Object obj) {
|
||||
if(!(obj instanceof String)) {
|
||||
obj = "foo";
|
||||
}
|
||||
((String) obj).substring()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user