mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 03:13:40 +07:00
IDEA-36326 "set" support added
This commit is contained in:
+9
@@ -0,0 +1,9 @@
|
||||
// "Replace with list access" "true"
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
||||
class A {
|
||||
void test(ArrayList<Integer> list) {
|
||||
list.set(0, 5);
|
||||
}
|
||||
}
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
// "Replace with list access" "false"
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
||||
class A {
|
||||
void test(ArrayList<Integer> list) {
|
||||
if (lis<caret>t[0] = 5 == 5){
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
// "Replace with list access" "true"
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
||||
class A {
|
||||
void test(ArrayList<Integer> list) {
|
||||
lis<caret>t[0] = 5;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user