diff --git a/core/src/main/java/google/registry/model/domain/DomainContent.java b/core/src/main/java/google/registry/model/domain/DomainContent.java index 3b19fed04..997a504b1 100644 --- a/core/src/main/java/google/registry/model/domain/DomainContent.java +++ b/core/src/main/java/google/registry/model/domain/DomainContent.java @@ -173,8 +173,9 @@ public class DomainContent extends EppResource @Transient Set dsData; /** - * The claims notice supplied when this application or domain was created, if there was one. It's - * {@literal @}XmlTransient because it's not returned in an info response. + * The claims notice supplied when this domain was created, if there was one. + * + *

It's {@literal @}XmlTransient because it's not returned in an info response. */ @IgnoreSave(IfNull.class) @Embedded @@ -706,7 +707,7 @@ public class DomainContent extends EppResource return authInfo; } - /** Returns all referenced contacts from this domain or application. */ + /** Returns all referenced contacts from this domain. */ public ImmutableSet> getReferencedContacts() { return nullToEmptyImmutableCopy(allContacts).stream() .map(DesignatedContact::getContactKey) diff --git a/core/src/main/java/google/registry/model/domain/launch/LaunchPhase.java b/core/src/main/java/google/registry/model/domain/launch/LaunchPhase.java index c00b3e6ee..93d92b57e 100644 --- a/core/src/main/java/google/registry/model/domain/launch/LaunchPhase.java +++ b/core/src/main/java/google/registry/model/domain/launch/LaunchPhase.java @@ -51,8 +51,8 @@ import javax.xml.bind.annotation.XmlValue; public class LaunchPhase extends ImmutableObject { /** - * The phase during which trademark holders can submit registrations or applications with - * trademark information that can be validated by the server. + * The phase during which trademark holders can submit domain registrations with trademark + * information that can be validated by the server. */ public static final LaunchPhase SUNRISE = create("sunrise"); diff --git a/core/src/test/java/google/registry/flows/contact/ContactDeleteFlowTest.java b/core/src/test/java/google/registry/flows/contact/ContactDeleteFlowTest.java index bc2ecc033..d73a2eee8 100644 --- a/core/src/test/java/google/registry/flows/contact/ContactDeleteFlowTest.java +++ b/core/src/test/java/google/registry/flows/contact/ContactDeleteFlowTest.java @@ -235,14 +235,6 @@ class ContactDeleteFlowTest extends ResourceFlowTestCase