Java: Fixed extracting method from duplicates containing reused variables (IDEA-188894)

This commit is contained in:
Pavel Dolgov
2018-03-28 12:33:31 +03:00
parent e4b477fc6e
commit b7f3c967e9
8 changed files with 205 additions and 3 deletions
@@ -0,0 +1,21 @@
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>
s = "";
System.out.println(s.length());
}
void bar(List<String> a) {
String s = a.get(1);
if (s == null) return;
System.out.println(s.charAt(1));
s = "";
System.out.println(s.length());
}
}