Removes workaround for 2020-1.M1 release train version

This commit is contained in:
Spencer Gibb
2020-04-16 12:24:05 -04:00
parent 2634db5b3d
commit 6063671ed0

View File

@@ -172,10 +172,6 @@ public class ProjectVersion implements Comparable<ProjectVersion>, Serializable
if (this.version == null) {
throw new IllegalStateException("Version can't be null!");
}
if (this.version.equals("2020-1.M1")) {
SplitVersion splitVersion = SplitVersion.dot(new String[] { "2020-1", "M1" });
return splitVersion;
}
SplitVersion splitByHyphen = tryHyphenSeparatedVersion();
if (splitByHyphen != null) {
return splitByHyphen;