From 7cd125a7abd22c4688f3cadb58506a923cf402d4 Mon Sep 17 00:00:00 2001 From: nickfelt Date: Wed, 6 Jul 2016 13:28:43 -0700 Subject: [PATCH] Downgrade truly minor TODO to a mere comment It's not worth keeping a P4 bug open for this. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=126731333 --- java/google/registry/bigquery/BigqueryUtils.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/java/google/registry/bigquery/BigqueryUtils.java b/java/google/registry/bigquery/BigqueryUtils.java index b65bf2854..aeb625a24 100644 --- a/java/google/registry/bigquery/BigqueryUtils.java +++ b/java/google/registry/bigquery/BigqueryUtils.java @@ -116,9 +116,8 @@ public class BigqueryUtils { ISODateTimeFormat.hourMinuteSecond().getParser()}) // Print UTC as the empty string since BigQuery's TIMESTAMP() function does not accept any // time zone specification, but require "UTC" on parsing. Since we force this formatter to - // always use UTC below, the other arguments do not matter. - // - // TODO(b/26162667): replace this with appendLiteral(" UTC") if b/16380363 gets resolved. + // always use UTC below, the other arguments do not matter. If b/16380363 ever gets resolved + // this could be simplified to appendLiteral(" UTC"). .appendTimeZoneOffset("", " UTC", false, 1, 1) .toFormatter() .withZoneUTC();