mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
12 lines
249 B
Java
12 lines
249 B
Java
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';
|
|
}
|
|
}
|