File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed
server/src/main/java/org/elasticsearch/action/admin/cluster/snapshots/get Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -55,8 +55,6 @@ public GetSnapshotsResponse(
5555
5656 public GetSnapshotsResponse (StreamInput in ) throws IOException {
5757 this .snapshots = in .readCollectionAsImmutableList (SnapshotInfo ::readFrom );
58- // TODO Skip when we have V9 in TransportVersions
59- in .readMap (StreamInput ::readException );
6058 this .next = in .readOptionalString ();
6159 this .total = in .readVInt ();
6260 this .remaining = in .readVInt ();
@@ -87,8 +85,6 @@ public int remaining() {
8785 @ Override
8886 public void writeTo (StreamOutput out ) throws IOException {
8987 out .writeCollection (snapshots );
90- // TODO Skip when we have V9 in TransportVersions
91- out .writeMap (Map .of (), StreamOutput ::writeException );
9288 out .writeOptionalString (next );
9389 out .writeVInt (total );
9490 out .writeVInt (remaining );
You can’t perform that action at this time.
0 commit comments