From 5b1a18708ad3d7d42db035c8125328fa670087fb Mon Sep 17 00:00:00 2001 From: "T.J. Alumbaugh" Date: Mon, 14 Dec 2020 17:19:19 -0800 Subject: [PATCH] Remove unneeded TODO in comment. PiperOrigin-RevId: 347502770 Change-Id: Ie1ca611926478301610982028f071a14a09e40b9 --- tensorflow/lite/kernels/resize_nearest_neighbor.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tensorflow/lite/kernels/resize_nearest_neighbor.cc b/tensorflow/lite/kernels/resize_nearest_neighbor.cc index bef39559507..85e833c351a 100644 --- a/tensorflow/lite/kernels/resize_nearest_neighbor.cc +++ b/tensorflow/lite/kernels/resize_nearest_neighbor.cc @@ -68,7 +68,7 @@ TfLiteStatus Prepare(TfLiteContext* context, TfLiteNode* node) { TF_LITE_ENSURE_OK(context, GetOutputSafe(context, node, kOutputTensor, &output)); - // TODO(ahentz): Our current implementations rely on the input being 4D, + // Our current implementations relies on the input being 4D, // and the size being 1D tensor with exactly 2 elements. TF_LITE_ENSURE_EQ(context, NumDimensions(input), 4); TF_LITE_ENSURE_EQ(context, NumDimensions(size), 1);