Remove dead code from GetResponse.java

This commit is contained in:
Simon Willnauer 2016-11-16 10:48:15 +01:00
parent c6c734dce1
commit 6baded8e7f
1 changed files with 0 additions and 6 deletions

View File

@ -164,12 +164,6 @@ public class GetResponse extends ActionResponse implements Iterable<GetField>, T
return getResult.toXContent(builder, params);
}
public static GetResponse readGetResponse(StreamInput in) throws IOException {
GetResponse result = new GetResponse();
result.readFrom(in);
return result;
}
@Override
public void readFrom(StreamInput in) throws IOException {
super.readFrom(in);