mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
update dfa intention test expectations after IDEA-149904
This commit is contained in:
+1
-1
@@ -5,6 +5,6 @@ import java.lang.Integer;
|
||||
class A{
|
||||
void test(){
|
||||
Integer integer = null;
|
||||
int i = in<caret>teger.toString().length();
|
||||
int i = integer.to<caret>String().length();
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -3,6 +3,6 @@
|
||||
class A{
|
||||
void test(){
|
||||
List list = null;
|
||||
Object o = li<caret>st.get(0);
|
||||
Object o = list.ge<caret>t(0);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user