mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 11:50:57 +07:00
11 lines
211 B
Plaintext
11 lines
211 B
Plaintext
public class UnusedReassignmentInLoop {
|
|
|
|
public void test() {
|
|
for(int i = 0; i < 3; i++) {
|
|
String replacement = "foo";
|
|
System.out.println(replacement);
|
|
|
|
replacement = "bar";
|
|
}
|
|
}
|
|
} |