From d25be65ed8213eca62903b38ad26d5f8c2d52f6d Mon Sep 17 00:00:00 2001 From: cgoldfeder Date: Fri, 29 Jul 2016 09:22:43 -0400 Subject: [PATCH] Remove an unused import and change @link to @code ...to stop the warnings in this file. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=130759383 --- java/google/registry/config/ConfigModule.java | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/java/google/registry/config/ConfigModule.java b/java/google/registry/config/ConfigModule.java index f938d1326..c53e39e35 100644 --- a/java/google/registry/config/ConfigModule.java +++ b/java/google/registry/config/ConfigModule.java @@ -20,7 +20,6 @@ import com.google.common.base.Optional; import com.google.common.collect.ImmutableMap; import dagger.Module; import dagger.Provides; -import google.registry.config.ConfigModule.Config; import java.lang.annotation.Documented; import java.net.URI; import java.net.URL; @@ -46,9 +45,9 @@ import org.joda.time.Duration; * *

It is recommended that users do not modify this file within a forked repository. It is * preferable to modify these settings by swapping out this module with a separate copied version - * in the user's repository. For this to work, other files need to be copied too, such as - * {@link google.registry.module.backend.BackendComponent BackendComponent}. This allows modules to - * be substituted at the {@code @Component} level. + * in the user's repository. For this to work, other files need to be copied too, such as the + * {@code @Component} instances under {@code google.registry.module}. This allows modules to be + * substituted at the {@code @Component} level. * *

There's also a deprecated configuration class that needs to be overridden and supplied via a * system property. See the instructions in {@link ProductionRegistryConfigExample} and