Skip to content

Commit d722635

Browse files
committed
Javadoc fixed.
1 parent 4057dcd commit d722635

1 file changed

Lines changed: 6 additions & 7 deletions

File tree

  • gcloud-java-dns/src/main/java/com/google/gcloud/dns

gcloud-java-dns/src/main/java/com/google/gcloud/dns/Zone.java

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,7 @@ public static Zone get(Dns dnsService, String zoneName, Dns.ZoneOption... option
6666
}
6767

6868
/**
69-
* Retrieves the latest information about the zone. The method retrieves the zone by name which
70-
* must always be initialized.
69+
* Retrieves the latest information about the zone. The method retrieves the zone by name.
7170
*
7271
* @param options optional restriction on what fields should be fetched
7372
* @return zone object containing updated information or {@code null} if not not found
@@ -100,7 +99,7 @@ public Page<DnsRecord> listDnsRecords(Dns.DnsRecordListOption... options) {
10099

101100
/**
102101
* Submits {@link ChangeRequest} to the service for it to applied to this zone. The method
103-
* searches for zone by name which must always be initialized.
102+
* searches for zone by name.
104103
*
105104
* @param options optional restriction on what fields of {@link ChangeRequest} should be returned
106105
* @return ChangeRequest with server-assigned ID
@@ -114,8 +113,8 @@ public ChangeRequest applyChangeRequest(ChangeRequest changeRequest,
114113

115114
/**
116115
* Retrieves an updated information about a change request previously submitted to be applied to
117-
* this zone. Returns a {@link ChangeRequest} or {@code null} if the change request was not
118-
* found. Throws {@link DnsException} if the zone is not found.
116+
* this zone. Returns a {@link ChangeRequest} or {@code null} if the change request was not found.
117+
* Throws {@link DnsException} if the zone is not found.
119118
*
120119
* @param options optional restriction on what fields of {@link ChangeRequest} should be returned
121120
* @return updated ChangeRequest
@@ -129,8 +128,8 @@ public ChangeRequest getChangeRequest(String changeRequestId,
129128
}
130129

131130
/**
132-
* Retrieves all change requests for this zone. The method searches for zone by name which must
133-
* always be initialized. Returns a page of {@link ChangeRequest}s.
131+
* Retrieves all change requests for this zone. The method searches for zone by name. Returns a
132+
* page of {@link ChangeRequest}s.
134133
*
135134
* @param options optional restriction on listing and fields to be returned
136135
* @return a page of change requests

0 commit comments

Comments
 (0)