OSDN Git Service

Change version to 0.90 & remove debug message.
authorRandy Baumgarte <randy@fbn.cx>
Tue, 14 Sep 2010 22:11:23 +0000 (18:11 -0400)
committerRandy Baumgarte <randy@fbn.cx>
Tue, 14 Sep 2010 22:23:00 +0000 (18:23 -0400)
src/cx/fbn/nevernote/Global.java
src/cx/fbn/nevernote/config/StartupConfig.java

index 6c9e384..0090c4d 100644 (file)
@@ -46,7 +46,7 @@ import cx.fbn.nevernote.gui.ShortcutKeys;
 import cx.fbn.nevernote.utilities.ApplicationLogger;\r
 \r
 public class Global {\r
-       public static String version = "0.89";\r
+       public static String version = "0.90";\r
     public static String username = ""; \r
     public static String password = "";     \r
     \r
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;
     }