Ignore:
Timestamp:
19/08/10 15:26:00 (21 months ago)
Author:
Stephen Rankin
Message:

Refactoring due to name change. ref#236.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/applications/NXvalidate/src/org/nexusformat/nxvalidate/UserSettings.java

    r1507 r1511  
    6767        File settings = new File(System.getProperty("user.home") 
    6868                + System.getProperty("file.separator") 
    69                 + ".nxconvertpy.properties"); 
     69                + ".nxvalidate.properties"); 
    7070 
    7171        if (settings.exists()) { 
     
    9292 
    9393        File settings = new File(System.getProperty("user.home") 
    94                 + System.getProperty("file.separator") + ".nxconvertpy.properties"); 
     94                + System.getProperty("file.separator") + ".nxvalidate.properties"); 
    9595        try { 
    9696            if (settings.exists()) { 
    9797 
    9898                props.setProperty("nxconvert", nxconvertFile.getAbsolutePath()); 
    99                 props.store(new FileOutputStream(settings), "ISIS NXConvertpy"); 
     99                props.store(new FileOutputStream(settings), "ISIS NXvalidate"); 
    100100 
    101101            } else { 
    102102                settings.createNewFile(); 
    103103                props.setProperty("nxconvert", nxconvertFile.getAbsolutePath()); 
    104                 props.store(new FileOutputStream(settings), "ISIS NXConvertpy"); 
     104                props.store(new FileOutputStream(settings), "ISIS NXvalidate"); 
    105105 
    106106            } 
Note: See TracChangeset for help on using the changeset viewer.