show setting with generate annotations right on extract method dialog

This commit is contained in:
Anna Kozlova
2014-11-28 15:22:31 +01:00
parent 1d6f2590bf
commit f0a876431a
18 changed files with 73 additions and 25 deletions
@@ -1,3 +1,5 @@
import org.jetbrains.annotations.NotNull;
import java.util.*;
class C {
@@ -11,6 +13,7 @@ class C {
System.out.println("l1 = " + l1 + ", l2 = " + l2);
}
@NotNull
private List newMethod(Object[] array) {
List l1 = null;
l1 = new ArrayList(Arrays.asList(array));