Prints the current indentation, and then the string, and a '\n'. @param s The string
(String s)
| 134 | * @param s The string |
| 135 | */ |
| 136 | public void printil(String s) { |
| 137 | javaLine++; |
| 138 | writer.print(SPACES.substring(0, indent)); |
| 139 | writer.println(s); |
| 140 | } |
| 141 | |
| 142 | /** |
| 143 | * Prints the given char. Use println() to print a '\n'. |
no test coverage detected