(String path)
| 526 | } |
| 527 | |
| 528 | @AstroImageJ(reason = "Widen access", modified = true) |
| 529 | public static boolean loadPrefs(String path) { |
| 530 | try { |
| 531 | InputStream is = new BufferedInputStream(new FileInputStream(path)); |
| 532 | ijPrefs.load(is); |
| 533 | is.close(); |
| 534 | return true; |
| 535 | } catch (Exception e) { |
| 536 | return false; |
| 537 | } |
| 538 | } |
| 539 | |
| 540 | /** Saves user preferences in the IJ_Prefs.txt properties file. */ |
| 541 | @AstroImageJ(reason = "Rename for AIJ", modified = true) |
no test coverage detected