diff --git a/java/google/registry/config/ProductionRegistryConfigExample.java b/java/google/registry/config/ProductionRegistryConfigExample.java index d1a53ce9c..2134e8efb 100644 --- a/java/google/registry/config/ProductionRegistryConfigExample.java +++ b/java/google/registry/config/ProductionRegistryConfigExample.java @@ -148,11 +148,6 @@ public final class ProductionRegistryConfigExample implements RegistryConfig { return makeUrl("https://www.registry.example"); } - @Override - public String getDocumentationProjectTitle() { - return "Nomulus"; - } - @Override public int getEppResourceIndexBucketCount() { return 997; diff --git a/java/google/registry/config/RegistryConfig.java b/java/google/registry/config/RegistryConfig.java index 54decfd2e..8e5ace1da 100644 --- a/java/google/registry/config/RegistryConfig.java +++ b/java/google/registry/config/RegistryConfig.java @@ -140,11 +140,6 @@ public interface RegistryConfig { */ public URL getRegistrarDefaultReferralUrl(); - /** - * Returns the title of the project used in generating documentation. - */ - public String getDocumentationProjectTitle(); - /** * Returns the number of EppResourceIndex buckets to be used. */ diff --git a/java/google/registry/config/TestRegistryConfig.java b/java/google/registry/config/TestRegistryConfig.java index 35540a1bf..1cc7c5d8d 100644 --- a/java/google/registry/config/TestRegistryConfig.java +++ b/java/google/registry/config/TestRegistryConfig.java @@ -106,11 +106,6 @@ public class TestRegistryConfig implements RegistryConfig { return makeUrl("http://www.referral.example/path"); } - @Override - public String getDocumentationProjectTitle() { - return "Nomulus"; - } - @Override public int getEppResourceIndexBucketCount() { return 2;