blob: 106ec29fb405b0d6ca23a70f0667ed15097031e9 [file] [log] [blame]
class Test {
void foo(Object x) {
if (x instanceof String) x = newMethod((String) x);
if (x instanceof String) x = newMethod((String) x);
}
private String newMethod(String x) {
return x.substring(1);
}
}