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
@@ -2,6 +2,6 @@
|
||||
class A{
|
||||
void test(){
|
||||
Integer container = null;
|
||||
for (int i = 0, limit = con<caret>tainer.intValue(); i < limit; i++){}
|
||||
for (int i = 0, limit = container.int<caret>Value(); i < limit; i++){}
|
||||
}
|
||||
}
|
||||
+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);
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -2,6 +2,6 @@
|
||||
class A {
|
||||
void foo(){
|
||||
String s = null;
|
||||
for (int i=0; i!=<caret>s.hashCode();i++){}
|
||||
for (int i=0; i!=s.hash<caret>Code();i++){}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user