From 3dbcee55bd2e3c3a6ce34e4d7e320d1c52793045 Mon Sep 17 00:00:00 2001 From: mcilwain Date: Thu, 13 Oct 2016 13:24:37 -0700 Subject: [PATCH] Remove stale TODO on Javadoc for Registrar.PUBLICLY_VISIBLE_TYPES ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=136078171 --- java/google/registry/model/registrar/Registrar.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/java/google/registry/model/registrar/Registrar.java b/java/google/registry/model/registrar/Registrar.java index 456561de4..315a493ce 100644 --- a/java/google/registry/model/registrar/Registrar.java +++ b/java/google/registry/model/registrar/Registrar.java @@ -174,9 +174,9 @@ public class Registrar extends ImmutableObject implements Buildable, Jsonifiable /** * The types for which a {@link Registrar} should be included in WHOIS and RDAP output. We exclude * registrars of type TEST. We considered excluding INTERNAL as well, but decided that - * troubleshooting would be easier with INTERNAL registrars visible. + * troubleshooting would be easier with INTERNAL registrars visible. Before removing other types + * from view, carefully consider the effect on things like prober monitoring and OT&E. */ - //TODO(b/27274151): Expand documentation of this field. private static final ImmutableSet PUBLICLY_VISIBLE_TYPES = immutableEnumSet( Type.REAL, Type.PDT, Type.OTE, Type.EXTERNAL_MONITORING, Type.MONITORING, Type.INTERNAL);