From 228e4f6c952b60cc6611d124e0bb55fcdcc24087 Mon Sep 17 00:00:00 2001 From: mcilwain Date: Thu, 7 Jun 2018 05:11:52 -0700 Subject: [PATCH] Update LORDN comments to account for start-date sunrise ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=199619121 --- java/google/registry/tmch/LordnTask.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/java/google/registry/tmch/LordnTask.java b/java/google/registry/tmch/LordnTask.java index 997a9cab3..27308ac36 100644 --- a/java/google/registry/tmch/LordnTask.java +++ b/java/google/registry/tmch/LordnTask.java @@ -130,7 +130,7 @@ public class LordnTask { domain.getSmdId(), getIanaIdentifier(domain.getCreationClientId()), transactionTime), // Used as creation time. - domain.getApplicationTime()); // This may be null for sunrise QLP domains. + domain.getApplicationTime()); // This may be null for start-date sunrise or QLP domains. } /** Returns the corresponding CSV LORDN line for a claims domain. */ @@ -145,7 +145,7 @@ public class LordnTask { getIanaIdentifier(domain.getCreationClientId()), transactionTime, // Used as creation time. domain.getLaunchNotice().getAcceptedTime()), - domain.getApplicationTime()); // This may be null if this wasn't from landrush. + domain.getApplicationTime()); // This is usually null except for landrush domains. } /** Retrieves the IANA identifier for a registrar based on the client id. */