Loads INI formatted input from a file into this instance, using the default character encoding. Everything in the file before the first section header is ignored. @param filename file to read from @throws IOException at an I/O problem
(String filename)
| 491 | * @throws IOException at an I/O problem |
| 492 | */ |
| 493 | public void load(String filename) throws IOException { |
| 494 | load(new File(filename)); |
| 495 | } |
| 496 | |
| 497 | /** |
| 498 | * Loads INI formatted input from a file into this instance, using the |
nothing calls this directly
no test coverage detected