Opens the filepaths.ini file for reading
()
| 1277 | * Opens the filepaths.ini file for reading |
| 1278 | **/ |
| 1279 | private static void readFilePaths() |
| 1280 | { |
| 1281 | try(InputStream in = new FileInputStream(FILE_LOCATION)) |
| 1282 | { |
| 1283 | FILEPATHS.load(in); |
| 1284 | } |
| 1285 | catch (IOException e) |
| 1286 | { |
| 1287 | // Not an error, this file may not exist yet |
| 1288 | if (Logging.isDebugMode()) |
| 1289 | { |
| 1290 | Logging.debugPrint(LanguageBundle.getString("SettingsHandler.will.create.filepaths.ini")); //$NON-NLS-1$ |
| 1291 | } |
| 1292 | } |
| 1293 | } |
| 1294 | |
| 1295 | /** |
| 1296 | * Opens the filter.ini file for reading |
no test coverage detected