From fa7d66d8a0bea5356a1255634b45203aad40960e Mon Sep 17 00:00:00 2001
From: "T.J. Alumbaugh" <talumbau@google.com>
Date: Wed, 18 Nov 2020 14:24:01 -0800
Subject: [PATCH] Remove TODOD since Concat op now supports all types.

PiperOrigin-RevId: 343156229
Change-Id: Ic8f206dd9a3e4b13eb6848f978dbf96a0959a6e9
---
 tensorflow/lite/kernels/concatenation.cc | 2 --
 1 file changed, 2 deletions(-)

diff --git a/tensorflow/lite/kernels/concatenation.cc b/tensorflow/lite/kernels/concatenation.cc
index d447ba7a289..017760db23d 100644
--- a/tensorflow/lite/kernels/concatenation.cc
+++ b/tensorflow/lite/kernels/concatenation.cc
@@ -52,8 +52,6 @@ TfLiteStatus Prepare(TfLiteContext* context, TfLiteNode* node) {
   TF_LITE_ENSURE(context, axis >= 0);
   TF_LITE_ENSURE(context, axis < t0->dims->size);
 
-  // TODO(ahentz): These are limitations of our implementation that could be
-  // removed with a bit of effort.
   TF_LITE_ENSURE_EQ(context, params->activation, kTfLiteActNone);
   TF_LITE_ENSURE(context,
                  input_type == kTfLiteFloat32 || input_type == kTfLiteUInt8 ||