Skip to content

Commit

Permalink
Drop these unused parse(...) methods
Browse files Browse the repository at this point in the history
  • Loading branch information
joegallo committed Oct 11, 2024
1 parent 93faac4 commit 8b1953b
Showing 1 changed file with 0 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -277,10 +277,6 @@ public Maxmind(StreamInput in) throws IOException {
this(in.readString());
}

public static Maxmind parse(XContentParser parser) {
return PARSER.apply(parser, null);
}

@Override
public void writeTo(StreamOutput out) throws IOException {
out.writeString(accountId);
Expand Down Expand Up @@ -310,10 +306,6 @@ public Ipinfo(StreamInput in) throws IOException {
this();
}

public static Ipinfo parse(XContentParser parser) {
return PARSER.apply(parser, null);
}

@Override
public void writeTo(StreamOutput out) throws IOException {}

Expand Down Expand Up @@ -353,10 +345,6 @@ public Local(StreamInput in) throws IOException {
this(in.readString());
}

public static Local parse(XContentParser parser) {
return PARSER.apply(parser, null);
}

@Override
public void writeTo(StreamOutput out) throws IOException {
out.writeString(type);
Expand Down Expand Up @@ -390,10 +378,6 @@ public Web(StreamInput in) throws IOException {
this();
}

public static Web parse(XContentParser parser) {
return PARSER.apply(parser, null);
}

@Override
public void writeTo(StreamOutput out) throws IOException {}

Expand Down

0 comments on commit 8b1953b

Please sign in to comment.