Skip to content

Commit 3e0dcee

Browse files
author
williamd5
committed
remove redundant constructor
1 parent 848b5e7 commit 3e0dcee

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

lib/ZoneValidationPretty.ts

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import ZoneValidation from "./models/ZoneValidation";
22
import ClientObject from "./ClientObject.js";
3-
import HetznerDnsClient from "./HetznerDnsClient.js";
43
import DnsRecord from "./DnsRecord.js";
54

65
/**
@@ -21,13 +20,4 @@ export default class ZoneValidationPretty extends ClientObject<ZoneValidation> {
2120
* @type {DnsRecord[]}
2221
*/
2322
public readonly validRecords = this._data.valid_records.map((record) => new DnsRecord(this.client, record));
24-
25-
/**
26-
* Create a new zone validation object
27-
* @param {HetznerDnsClient} client - API client instance
28-
* @param {ZoneValidation} data - Raw zone validation data
29-
*/
30-
public constructor(client: HetznerDnsClient, data: ZoneValidation) {
31-
super(client, data);
32-
}
3323
}

0 commit comments

Comments
 (0)