From 0e4ce706103142ef5c14189c85caa39c7c043de4 Mon Sep 17 00:00:00 2001 From: cgoldfeder Date: Fri, 19 Aug 2016 13:12:49 -0700 Subject: [PATCH] Fix broken JavaDoc @see tags can't contain a label and a link. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=130783416 --- java/google/registry/dns/writer/clouddns/CloudDnsWriter.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/java/google/registry/dns/writer/clouddns/CloudDnsWriter.java b/java/google/registry/dns/writer/clouddns/CloudDnsWriter.java index 229294cfd..de0089ae4 100644 --- a/java/google/registry/dns/writer/clouddns/CloudDnsWriter.java +++ b/java/google/registry/dns/writer/clouddns/CloudDnsWriter.java @@ -341,13 +341,14 @@ class CloudDnsWriter implements DnsWriter { *

This call should be used in conjunction with getResourceRecordsForDomain in a get-and-set * retry loop. * + *

See {@link "https://cloud.google.com/dns/troubleshooting"} for a list of errors produced by + * the Google Cloud DNS API. + * * @throws IOException if the operation could not be completed successfully due to an * uncorrectable error. * @throws ZoneStateException if the operation could not be completely successfully because the * records to delete do not exist, already exist or have been modified with different * attributes since being queried. - * @see "https://cloud.google.com/dns/troubleshooting" for a list of errors produced by the Google - * Cloud DNS API. */ private void updateResourceRecords( ImmutableSet additions, ImmutableSet deletions)