ref #8631: remove nomenclatural code selection page for file import
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / util / ApplicationUtil.java
index 8f3025067dabff93477c171c39023a49be7bf67f..bb3901821e004674e7a2e0c6f8464fb73db38502 100644 (file)
@@ -1,4 +1,3 @@
-// $Id$
 /**
 * Copyright (C) 2007 EDIT
 * European Distributed Institute of Taxonomy
@@ -28,7 +27,7 @@ public class ApplicationUtil extends AbstractUtility {
     /**
      * Prefix to declare the version as beta
      */
-    private static final String BETA_PREFIX = "[REMOTING]";
+    private static final String BETA_PREFIX = "[BETA]";
 
     public static String getTitle() {
         return "EDIT Taxonomic Editor " + ApplicationUtil.getVersion();
@@ -57,7 +56,7 @@ public class ApplicationUtil extends AbstractUtility {
      * @return
      */
     public static boolean isStable() {
-        return !getVersion().startsWith("[");
+        return !getVersion().startsWith(BETA_PREFIX);
     }