- Timestamp:
- 19/08/10 15:26:00 (21 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/applications/NXvalidate/src/org/nexusformat/nxvalidate/UserSettings.java
r1507 r1511 67 67 File settings = new File(System.getProperty("user.home") 68 68 + System.getProperty("file.separator") 69 + ".nx convertpy.properties");69 + ".nxvalidate.properties"); 70 70 71 71 if (settings.exists()) { … … 92 92 93 93 File settings = new File(System.getProperty("user.home") 94 + System.getProperty("file.separator") + ".nx convertpy.properties");94 + System.getProperty("file.separator") + ".nxvalidate.properties"); 95 95 try { 96 96 if (settings.exists()) { 97 97 98 98 props.setProperty("nxconvert", nxconvertFile.getAbsolutePath()); 99 props.store(new FileOutputStream(settings), "ISIS NX Convertpy");99 props.store(new FileOutputStream(settings), "ISIS NXvalidate"); 100 100 101 101 } else { 102 102 settings.createNewFile(); 103 103 props.setProperty("nxconvert", nxconvertFile.getAbsolutePath()); 104 props.store(new FileOutputStream(settings), "ISIS NX Convertpy");104 props.store(new FileOutputStream(settings), "ISIS NXvalidate"); 105 105 106 106 }
Note: See TracChangeset
for help on using the changeset viewer.
