mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-26 19:06:24 +07:00
extract method with folded parameter: resolve names conflict (IDEA-156943)
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
class Test {
|
||||
void bar() {
|
||||
int size = 10;
|
||||
int array[] = new int[size];
|
||||
int array2[] = new int[size];
|
||||
|
||||
int i = 0;
|
||||
|
||||
<selection>int sum = array[i];
|
||||
sum += array2[i];</selection>
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user