class s { { x("xxx"); } String x(String g) { String d = foo(g); return d; } private String foo(String i) { return i==null ? null : i; } }