blob: f72c45f2f3957b2a0a9dd28ae7ac6964fe18b410 [file] [log] [blame]
public class InstanceVariableReferenced {
private static Object example;
private String s = "yes";
public Object getInstance() {
if (example == null) {
example<caret> = getString(s);
}
return example
}
private static String getString(String s) {
return new String(s);
}
}