blob: a29a6f310cccdf2016065d8be18e5b958775d3f3 [file] [log] [blame]
public class Test {
public static void foo(char c) {
if (newMethod(c) || c == '\u0000') {
System.out.println("");
}
}
private static boolean newMethod(char c) {
return c == '\n' || c == '\r';
}
}