extract method: new signature detector (IDEA-66281); initial

This commit is contained in:
Anna Kozlova
2014-12-05 13:48:57 +01:00
parent 47531ace59
commit 5e2fa7be19
20 changed files with 585 additions and 32 deletions
@@ -0,0 +1,13 @@
public class Test {
{
int x = 0;
<selection>System.out.println(1);
System.out.println(2);
System.out.println(x);</selection>
System.out.println(3);
System.out.println(4);
System.out.println(x);
}
}