Files
openide/java/java-tests/testData/refactoring/extractMethodObject/WrapWithObject.java
Dmitry Jemerov 571ab0fc93 test++
2009-09-10 20:25:31 +04:00

9 lines
118 B
Java

class Test {
void f<caret>oo(int i, int... j) {
if (i == 0) {
for (int idx : j) {
}
}
}
}