Files
openide/java/java-tests/testData/refactoring/inlineMethod/ReuseResultVar.java.after

12 lines
211 B
Plaintext

class Test {
void useTest() {
String color;
if (Math.random() > 0.5) {
color = "Foo";
} else {
color = "Fie";
}
System.out.println("Color is " + color);
}
}