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

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


The following commit(s) were added to refs/heads/main by this push:
     new a3ee6ebaa7 IGNITE-19905 Remove redundant TODOs (#2863)
a3ee6ebaa7 is described below

commit a3ee6ebaa7d3457ec767256ec38f326f0a42baa2
Author: Kirill Gusakov <[email protected]>
AuthorDate: Fri Nov 24 15:05:52 2023 +0300

    IGNITE-19905 Remove redundant TODOs (#2863)
---
 .../java/org/apache/ignite/internal/table/distributed/TableManager.java | 2 --
 1 file changed, 2 deletions(-)

diff --git 
a/modules/table/src/main/java/org/apache/ignite/internal/table/distributed/TableManager.java
 
b/modules/table/src/main/java/org/apache/ignite/internal/table/distributed/TableManager.java
index 45ea4ca68d..d18daacb87 100644
--- 
a/modules/table/src/main/java/org/apache/ignite/internal/table/distributed/TableManager.java
+++ 
b/modules/table/src/main/java/org/apache/ignite/internal/table/distributed/TableManager.java
@@ -2044,7 +2044,6 @@ public class TableManager implements 
IgniteTablesInternal, IgniteComponent {
      * @return Future that will be completed after all resources have been 
closed.
      */
     private CompletableFuture<Void> stopPartition(TablePartitionId 
tablePartitionId, TableImpl table) {
-        // TODO: IGNITE-19905 - remove the check.
         if (table != null) {
             closePartitionTrackers(table.internalTable(), 
tablePartitionId.partitionId());
         }
@@ -2072,7 +2071,6 @@ public class TableManager implements 
IgniteTablesInternal, IgniteComponent {
 
     private CompletableFuture<Void> destroyPartitionStorages(TablePartitionId 
tablePartitionId, TableImpl table) {
         // TODO: IGNITE-18703 Destroy raft log and meta
-        // TODO: IGNITE-19905 - remove the check.
         if (table == null) {
             return completedFuture(null);
         }

Reply via email to