Revert "fix toString"

This reverts commit 935ccb1304.
This commit is contained in:
Martijn van Groningen 2016-04-19 23:29:28 +02:00
parent 935ccb1304
commit 793c6005ee
1 changed files with 1 additions and 10 deletions

View File

@ -33,7 +33,6 @@ import org.elasticsearch.common.io.stream.Writeable;
import org.elasticsearch.common.xcontent.StatusToXContent;
import org.elasticsearch.common.xcontent.ToXContent;
import org.elasticsearch.common.xcontent.XContentBuilder;
import org.elasticsearch.common.xcontent.json.JsonXContent;
import org.elasticsearch.rest.RestStatus;
import java.io.IOException;
@ -178,15 +177,7 @@ public class BulkItemResponse implements Streamable, StatusToXContent {
@Override
public String toString() {
// Can't use: Strings.toString(this)
// because missing start and end object
try {
XContentBuilder builder = JsonXContent.contentBuilder().startObject();
toXContent(builder, ToXContent.EMPTY_PARAMS);
return builder.endObject().string();
} catch (IOException e) {
throw new AssertionError("Cannot happen", e);
}
return Strings.toString(this);
}
}