Skip to content

Commit

Permalink
Remove 7.0.2 (#42282)
Browse files Browse the repository at this point in the history
7.0.2 removed, since it will never be, fixing branch consistency check.
  • Loading branch information
henningandersen committed May 21, 2019
1 parent d1b473e commit 802e00a
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions server/src/main/java/org/elasticsearch/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,6 @@ public class Version implements Comparable<Version>, ToXContentFragment {
public static final Version V_7_0_0 = new Version(V_7_0_0_ID, org.apache.lucene.util.Version.LUCENE_8_0_0);
public static final int V_7_0_1_ID = 7000199;
public static final Version V_7_0_1 = new Version(V_7_0_1_ID, org.apache.lucene.util.Version.LUCENE_8_0_0);
public static final int V_7_0_2_ID = 7000299;
public static final Version V_7_0_2 = new Version(V_7_0_2_ID, org.apache.lucene.util.Version.LUCENE_8_0_0);
public static final int V_7_1_0_ID = 7010099;
public static final Version V_7_1_0 = new Version(V_7_1_0_ID, org.apache.lucene.util.Version.LUCENE_8_0_0);
public static final int V_7_1_1_ID = 7010199;
Expand All @@ -159,8 +157,6 @@ public static Version fromId(int id) {
return V_7_1_1;
case V_7_1_0_ID:
return V_7_1_0;
case V_7_0_2_ID:
return V_7_0_2;
case V_7_0_1_ID:
return V_7_0_1;
case V_7_0_0_ID:
Expand Down

0 comments on commit 802e00a

Please sign in to comment.