blob: 20033449120147410c3f29908b02810074a42952 [file] [log] [blame]
public class C {
Object pipeIn;
public String foo() {
if (pipeIn == null)
getReader(); // spawn parsing thread
return "ok";
}
public String bar() {
if (pipeIn == null)
getReader(); // spawn parsing thread
return "ok";
}
void getReader() {}
}