Skip to content

Commit

Permalink
Remove 7.0.2 (elastic#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 authored and Gurkan Kaymak committed May 27, 2019
1 parent dcd5f23 commit 7412ed3
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 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 @@ -102,8 +102,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 Down Expand Up @@ -134,8 +132,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
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ public void testSerialization() throws Exception {
public void testSerializationPreV71() throws Exception {
final ExpressionRoleMapping original = randomRoleMapping(false);

final Version version = VersionUtils.randomVersionBetween(random(), Version.V_7_0_0, Version.V_7_0_2);
final Version version = VersionUtils.randomVersionBetween(random(), Version.V_7_0_0, Version.V_7_0_1);
BytesStreamOutput output = new BytesStreamOutput();
output.setVersion(version);
original.writeTo(output);
Expand Down

0 comments on commit 7412ed3

Please sign in to comment.