Files
openide/java/java-tests/testData/refactoring/introduceVariable/InsideForLoopIndependantFromLoopVariable.after.java
T

10 lines
194 B
Java

class Foo {
void foo(String[] input) {
int temp = input.length;
char[][] board = new char[temp][];
for (int i = 0; i < temp; i++) {
System.out.println(temp);
}
}
}