Skip to content

Commit aacd841

Browse files
committed
Remove overridden newResponse functions that have been removed
1 parent 6aa24fa commit aacd841

File tree

4 files changed

+0
-21
lines changed

4 files changed

+0
-21
lines changed

x-pack/plugin/ilm/src/main/java/org/elasticsearch/xpack/snapshotlifecycle/action/TransportDeleteSnapshotLifecycleAction.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,6 @@ protected String executor() {
4545
return ThreadPool.Names.SAME;
4646
}
4747

48-
@Override
49-
protected DeleteSnapshotLifecycleAction.Response newResponse() {
50-
throw new UnsupportedOperationException();
51-
}
52-
53-
5448
@Override
5549
protected DeleteSnapshotLifecycleAction.Response read(StreamInput in) throws IOException {
5650
return new DeleteSnapshotLifecycleAction.Response(in);

x-pack/plugin/ilm/src/main/java/org/elasticsearch/xpack/snapshotlifecycle/action/TransportExecuteSnapshotLifecycleAction.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,6 @@ protected String executor() {
5555
return ThreadPool.Names.SNAPSHOT;
5656
}
5757

58-
@Override
59-
protected ExecuteSnapshotLifecycleAction.Response newResponse() {
60-
throw new UnsupportedOperationException();
61-
}
62-
6358
@Override
6459
protected ExecuteSnapshotLifecycleAction.Response read(StreamInput in) throws IOException {
6560
return new ExecuteSnapshotLifecycleAction.Response(in);

x-pack/plugin/ilm/src/main/java/org/elasticsearch/xpack/snapshotlifecycle/action/TransportGetSnapshotLifecycleAction.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,6 @@ protected String executor() {
4949
return ThreadPool.Names.SAME;
5050
}
5151

52-
@Override
53-
protected GetSnapshotLifecycleAction.Response newResponse() {
54-
throw new UnsupportedOperationException();
55-
}
56-
5752
@Override
5853
protected GetSnapshotLifecycleAction.Response read(StreamInput in) throws IOException {
5954
return new GetSnapshotLifecycleAction.Response(in);

x-pack/plugin/ilm/src/main/java/org/elasticsearch/xpack/snapshotlifecycle/action/TransportPutSnapshotLifecycleAction.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,6 @@ protected String executor() {
5656
return ThreadPool.Names.SAME;
5757
}
5858

59-
@Override
60-
protected PutSnapshotLifecycleAction.Response newResponse() {
61-
throw new UnsupportedOperationException();
62-
}
63-
6459
@Override
6560
protected PutSnapshotLifecycleAction.Response read(StreamInput in) throws IOException {
6661
return new PutSnapshotLifecycleAction.Response(in);

0 commit comments

Comments
 (0)