From 7ea3db89800447843ce7d9f5b4c0378e28b61cfc Mon Sep 17 00:00:00 2001 From: cgoldfeder Date: Tue, 31 Jan 2017 13:44:35 -0800 Subject: [PATCH] Fix an annoying Javadoc nit Even though the outer class is imported, a Javadoc reference to a nested class needs to be fully qualified (or imported on its own, which our style guide prohibits). ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=146160210 --- .../registry/flows/custom/DomainDeleteFlowCustomLogic.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/java/google/registry/flows/custom/DomainDeleteFlowCustomLogic.java b/java/google/registry/flows/custom/DomainDeleteFlowCustomLogic.java index 391257796..b43418cf6 100644 --- a/java/google/registry/flows/custom/DomainDeleteFlowCustomLogic.java +++ b/java/google/registry/flows/custom/DomainDeleteFlowCustomLogic.java @@ -67,8 +67,8 @@ public class DomainDeleteFlowCustomLogic extends BaseFlowCustomLogic { /** * A hook that runs before the response is returned. * - *

This takes the {@link Result.Code} and {@link ResponseExtension}s as input and returns them, - * potentially with modifications. + *

This takes the {@link google.registry.model.eppoutput.Result.Code} and + * {@link ResponseExtension}s as input and returns them, potentially with modifications. */ @SuppressWarnings("unused") public BeforeResponseReturnData beforeResponse(BeforeResponseParameters parameters)