@@ -78,7 +78,7 @@ public Zone reload(Dns.ZoneOption... options) {
7878 }
7979
8080 /**
81- * Deletes the zone. The method first deletes the zone by name which must always be initialized .
81+ * Deletes the zone. The method deletes the zone by name.
8282 *
8383 * @return {@code true} is zone was found and deleted and {@code false} otherwise
8484 * @throws DnsException upon failure
@@ -88,8 +88,7 @@ public boolean delete() {
8888 }
8989
9090 /**
91- * Lists all {@link DnsRecord}s associated with this zone. The method searches for zone by name
92- * which must always be initialized.
91+ * Lists all {@link DnsRecord}s associated with this zone. The method searches for zone by name.
9392 *
9493 * @param options optional restriction on listing and fields of {@link DnsRecord}s returned
9594 * @return a page of DNS records
@@ -115,14 +114,13 @@ public ChangeRequest applyChangeRequest(ChangeRequest changeRequest,
115114
116115 /**
117116 * Retrieves an updated information about a change request previously submitted to be applied to
118- * this zone. The method searches for zone by name which must always be initialized. Returns a
119- * {@link ChangeRequest} if and {@code null} if the change request was not found. Throws {@link
120- * DnsException} if the zone is not found.
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.
121119 *
122120 * @param options optional restriction on what fields of {@link ChangeRequest} should be returned
123121 * @return updated ChangeRequest
124122 * @throws DnsException upon failure or if the zone is not found
125- * @throws NullPointerException if the change request does not have initialized id
123+ * @throws NullPointerException if {@code changeRequestId} is null
126124 */
127125 public ChangeRequest getChangeRequest (String changeRequestId ,
128126 Dns .ChangeRequestOption ... options ) {
@@ -132,8 +130,7 @@ public ChangeRequest getChangeRequest(String changeRequestId,
132130
133131 /**
134132 * Retrieves all change requests for this zone. The method searches for zone by name which must
135- * always be initialized. Returns a page of {@link ChangeRequest}s. Throws a {@link DnsException}
136- * if the zone is not found.
133+ * always be initialized. Returns a page of {@link ChangeRequest}s.
137134 *
138135 * @param options optional restriction on listing and fields to be returned
139136 * @return a page of change requests
0 commit comments