Remove a TODO

PiperOrigin-RevId: 408974953
Change-Id: I6a3a42ef036ce87e93601699163d0da7238e4867
diff --git a/tensorflow/lite/kernels/var_handle.cc b/tensorflow/lite/kernels/var_handle.cc
index 565cf4e..c179947 100644
--- a/tensorflow/lite/kernels/var_handle.cc
+++ b/tensorflow/lite/kernels/var_handle.cc
@@ -41,11 +41,6 @@
   VarParams* params = new VarParams;
   auto* subgraph = reinterpret_cast<Subgraph*>(context->impl_);
   // Create a new entry if doesn't exist, return the existing one otherwise.
-  // TODO(b/205586827): Currently resource IDs are created in incremental order.
-  // This is correct since the same resource map isn't shared between different
-  // models. Consider improve the resource ID creation logic to avoid ID
-  // collision once we support running multiple models that shares the same
-  // resource map at the same time.
   auto it = subgraph->resource_ids().insert(std::make_pair(
       std::make_pair(
           std::string(var_params->container ? var_params->container : ""),