Skip to content

Commit 2f6c773

Browse files
committed
Remove 6.1.5 version constant
The assumption here is that we will no longer be making a release from the 6.1 branch. Since we assume that all versions on this branch are actually released, we do not want to leave behind any versions that would require a snapshot build. We do have a test that verifies that all released versions are present here, so if another release is performed from the 6.1 branch, that test will fail and we will know to add the version constant at that time.
1 parent 8f9d2ee commit 2f6c773

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

server/src/main/java/org/elasticsearch/Version.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -149,8 +149,6 @@ public class Version implements Comparable<Version> {
149149
public static final Version V_6_1_3 = new Version(V_6_1_3_ID, org.apache.lucene.util.Version.LUCENE_7_1_0);
150150
public static final int V_6_1_4_ID = 6010499;
151151
public static final Version V_6_1_4 = new Version(V_6_1_4_ID, org.apache.lucene.util.Version.LUCENE_7_1_0);
152-
public static final int V_6_1_5_ID = 6010599;
153-
public static final Version V_6_1_5 = new Version(V_6_1_5_ID, org.apache.lucene.util.Version.LUCENE_7_1_0);
154152
public static final int V_6_2_0_ID = 6020099;
155153
public static final Version V_6_2_0 = new Version(V_6_2_0_ID, org.apache.lucene.util.Version.LUCENE_7_2_1);
156154
public static final int V_6_2_1_ID = 6020199;
@@ -193,8 +191,6 @@ public static Version fromId(int id) {
193191
return V_6_2_1;
194192
case V_6_2_0_ID:
195193
return V_6_2_0;
196-
case V_6_1_5_ID:
197-
return V_6_1_5;
198194
case V_6_1_4_ID:
199195
return V_6_1_4;
200196
case V_6_1_3_ID:

0 commit comments

Comments
 (0)