(String filePath)
| 14 | private int languageID; |
| 15 | |
| 16 | public StringsDatabase(String filePath) |
| 17 | throws DBException, IOException |
| 18 | { |
| 19 | this(new File(filePath)); |
| 20 | } |
| 21 | |
| 22 | public StringsDatabase(File file) |
| 23 | throws DBException, IOException |
nothing calls this directly
no test coverage detected