IDEA-153437 Do not suggest to loop over the loop variable (and don't duplicate "new")

This commit is contained in:
peter
2016-03-24 11:54:46 +01:00
parent 0a9d2963ae
commit 419770e30d
5 changed files with 73 additions and 6 deletions
@@ -0,0 +1,12 @@
import java.util.ArrayList;
public class Test {
{
ArrayList<Node> nodes = new ArrayList<>();
for (Node n : n<caret>)
}
}
class Node {}