suggest primitive types in for loop (IDEA-60558)

This commit is contained in:
peter
2010-10-30 16:50:50 +04:00
parent 7f6bb0873d
commit 3cad8b60da
8 changed files with 77 additions and 10 deletions
@@ -0,0 +1,7 @@
public class Foooo {
{
for (boo<caret>x)
}
}
@@ -0,0 +1,7 @@
public class Foooo {
{
for (boo<caret>x
}
}
@@ -0,0 +1,7 @@
public class Foooo {
{
for (final boo<caret>x
}
}
@@ -0,0 +1,7 @@
public class Foooo {
{
for (final boo<caret>x y
}
}
@@ -0,0 +1,7 @@
public class Foooo {
{
for (final boo<caret>x y : z)
}
}
@@ -0,0 +1,7 @@
public class Foooo {
{
for (final boo<caret>x y = 0;;)
}
}