mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-29 10:13:37 +07:00
9 lines
168 B
Java
9 lines
168 B
Java
// "Convert to local variable" "true"
|
|
class Temp {
|
|
public Temp() {
|
|
for (int i = 0; i < 10; i++) {
|
|
<caret>int p = i;
|
|
System.out.print(p);
|
|
}
|
|
}
|
|
} |