From 3d7a5ef9c05ba2fe4516bedf54884a5d16a81f18 Mon Sep 17 00:00:00 2001 From: Emil Ivov Date: Wed, 29 Nov 2006 22:33:15 +0000 Subject: [PATCH] no need to add 0 before alpha1 since we use a dash to ensure lexicographique order. --- src/net/java/sip/communicator/impl/version/VersionImpl.java | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/net/java/sip/communicator/impl/version/VersionImpl.java b/src/net/java/sip/communicator/impl/version/VersionImpl.java index d0b6ad219..528a27956 100644 --- a/src/net/java/sip/communicator/impl/version/VersionImpl.java +++ b/src/net/java/sip/communicator/impl/version/VersionImpl.java @@ -158,11 +158,6 @@ public String getPreReleaseID() if(!isPreRelease()) return null; - //if this is a nightly build, add a 0 at the beginning of the - //pre-release id so that it would lexicographically preceed the release. - if(isNightly()) - return "0" + PRE_RELEASE_ID; - return PRE_RELEASE_ID; }