mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-17 18:35:25 +00:00
Handle core removing <T> from Writeable
Original commit: elastic/x-pack-elasticsearch@34632c8a67
This commit is contained in:
parent
f708b2eff1
commit
629c585fba
@ -73,7 +73,7 @@ public class MonitoringBulkResponse extends ActionResponse {
|
||||
out.writeOptionalWriteable(error);
|
||||
}
|
||||
|
||||
public static class Error implements Writeable<Error>, ToXContent {
|
||||
public static class Error implements Writeable, ToXContent {
|
||||
|
||||
private final Throwable cause;
|
||||
private final RestStatus status;
|
||||
|
@ -20,7 +20,7 @@ import java.util.Map;
|
||||
/**
|
||||
* Base class for all monitoring documents.
|
||||
*/
|
||||
public class MonitoringDoc implements Writeable<MonitoringDoc> {
|
||||
public class MonitoringDoc implements Writeable {
|
||||
|
||||
private final String monitoringId;
|
||||
private final String monitoringVersion;
|
||||
@ -98,7 +98,7 @@ public class MonitoringDoc implements Writeable<MonitoringDoc> {
|
||||
"]";
|
||||
}
|
||||
|
||||
public static class Node implements Writeable<Node>, ToXContent {
|
||||
public static class Node implements Writeable, ToXContent {
|
||||
|
||||
private String uuid;
|
||||
private String host;
|
||||
|
Loading…
x
Reference in New Issue
Block a user