(String filename, String text)
| 124 | } |
| 125 | |
| 126 | public static void writeFile(String filename, String text) { |
| 127 | FileUtil.writeFile(new File(filename), text); |
| 128 | } |
| 129 | |
| 130 | public static void writeFile(File file, String text) { |
| 131 | try (PrintWriter p = new PrintWriter(file)) { |
no test coverage detected