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; }