Skip to content

Commit

Permalink
few changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Arpit-Bandejiya committed Nov 26, 2022
1 parent 555d8ba commit b40001f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,14 +78,14 @@ public UpdatePitResponse(
this.shardFailures = shardFailures;
}

public static CreatePitResponse fromXContent(XContentParser parser) throws IOException{
public static UpdatePitResponse fromXContent(XContentParser parser) throws IOException{
ensureExpectedToken(XContentParser.Token.START_OBJECT, parser.nextToken(), parser);
parser.nextToken();
return innerFromXContent(parser);
}

public static CreatePitResponse innerFromXContent(XContentParser parser) throws IOException {

public static UpdatePitResponse innerFromXContent(XContentParser parser) throws IOException {
return null;
}
@Override
public void writeTo(StreamOutput out) throws IOException{
Expand Down

0 comments on commit b40001f

Please sign in to comment.