mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 15:41:26 +07:00
suggest primitive types in for loop (IDEA-60558)
This commit is contained in:
@@ -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;;)
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user