Writes this instance in INI format to a file. @param filename the file to write to @throws IOException at an I/O problem
(String filename)
| 439 | * @throws IOException at an I/O problem |
| 440 | */ |
| 441 | public void save(String filename) throws IOException { |
| 442 | save(new File(filename)); |
| 443 | } |
| 444 | |
| 445 | /** |
| 446 | * Writes this instance in INI format to a file. |
nothing calls this directly
no test coverage detected