You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by sd...@apache.org on 2023/03/20 10:37:50 UTC

[ignite-3] 01/01: IGNITE-19070 Remove stale TODO

This is an automated email from the ASF dual-hosted git repository.

sdanilov pushed a commit to branch ignite-19070
in repository https://gitbox.apache.org/repos/asf/ignite-3.git

commit b219e96089602d6fccb7172d3f4ea831a5cc9b01
Author: Semyon Danilov <sa...@yandex.ru>
AuthorDate: Mon Mar 20 14:34:57 2023 +0400

    IGNITE-19070 Remove stale TODO
---
 .../network/serialization/SerializationResult.java | 54 ----------------------
 1 file changed, 54 deletions(-)

diff --git a/modules/network/src/main/java/org/apache/ignite/internal/network/serialization/SerializationResult.java b/modules/network/src/main/java/org/apache/ignite/internal/network/serialization/SerializationResult.java
deleted file mode 100644
index 69e3acf774..0000000000
--- a/modules/network/src/main/java/org/apache/ignite/internal/network/serialization/SerializationResult.java
+++ /dev/null
@@ -1,54 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package org.apache.ignite.internal.network.serialization;
-
-import java.util.List;
-
-/**
- * Class that holds a byte array of the serialized object and a list of type descriptor ids with all the descriptors that were
- * used during the serialization.
- * TODO: IGNITE-16081 It's a temporary class that will be removed.
- */
-public class SerializationResult {
-    /** Serialized object. */
-    private final byte[] array;
-
-    /** Type descriptors. */
-    private final List<Integer> ids;
-
-    /**
-     * Constructor.
-     *
-     * @param array Serialized object.
-     * @param ids   Type descriptors.
-     */
-    public SerializationResult(byte[] array, List<Integer> ids) {
-        this.array = array;
-        this.ids = ids;
-    }
-
-    /** Gets serialized object. */
-    public byte[] array() {
-        return array;
-    }
-
-    /** Gets descriptor ids. */
-    public List<Integer> ids() {
-        return ids;
-    }
-}