Prints the given string followed by '\n' @param s The string
(String s)
| 99 | * @param s The string |
| 100 | */ |
| 101 | public void println(String s) { |
| 102 | javaLine++; |
| 103 | writer.println(s); |
| 104 | } |
| 105 | |
| 106 | /** |
| 107 | * Prints a '\n' |
no outgoing calls
no test coverage detected