mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
Java: Fixed extracting method from duplicates containing reused variables (IDEA-188894)
This commit is contained in:
+19
@@ -0,0 +1,19 @@
|
||||
import java.util.List;
|
||||
|
||||
class DeclaredOutputVariable {
|
||||
void foo(List<String> a) {
|
||||
<selection>
|
||||
String s = a.get(1);
|
||||
if (s == null) return;
|
||||
System.out.println(s.charAt(1));
|
||||
</selection>
|
||||
System.out.println(s.length());
|
||||
}
|
||||
|
||||
void bar(List<String> a) {
|
||||
String s = a.get(2);
|
||||
if (s == null) return;
|
||||
System.out.println(s.charAt(2));
|
||||
System.out.println(s.length());
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user