OSDN Git Service

Correct problem parsing notes where carriage returns did not separate some XML lines...
[neighbornote/NeighborNote.git] / src / cx / fbn / nevernote / config / StartupConfig.java
index 0176a36..07e8d0e 100644 (file)
@@ -31,7 +31,6 @@ public class StartupConfig {
     public String getProgramDirPath() {
        if (programDirPath == null) {
           programDirPath = getClass().getProtectionDomain().getCodeSource().getLocation().getPath();
-          System.out.println("----" +programDirPath);
           if (programDirPath.endsWith(".jar")) {
                   programDirPath = programDirPath.substring(0,programDirPath.lastIndexOf("/"));
           } else {
@@ -40,7 +39,6 @@ public class StartupConfig {
                   }
                           programDirPath = programDirPath.substring(0,programDirPath.lastIndexOf("/"));
           }
-          System.out.println("----" +programDirPath);
        }
        return programDirPath;
     }