Files
openide/java/java-tests/testData/refactoring/introduceVariable/InsideIf.java

8 lines
157 B
Java

public class C {
{
Object o = getO();
String s = "";
if (o != null)
s += <selection>o.toString()</selection>;
}
}