v2.3.0 has been released and no longer needs to be hardcoded as -SNAPSHOT

This commit is contained in:
Clinton Gormley 2016-04-04 19:03:30 +02:00
parent dea12d200d
commit cbbf80ca35
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,7 @@ public class VersionUtils {
}
public static boolean isSnapshot(Version version) {
if (Version.CURRENT.equals(version) || Version.V_2_3_0.equals(version)) {
if (Version.CURRENT.equals(version)) {
return true;
}
return false;