removed unused methods.

This commit is contained in:
Shreyas Zare
2022-01-23 17:35:07 +05:30
parent 3dce9b311d
commit 6791966d95
2 changed files with 2 additions and 12 deletions

View File

@@ -1,6 +1,6 @@
/*
Technitium DNS Server
Copyright (C) 2021 Shreyas Zare (shreyas@technitium.com)
Copyright (C) 2022 Shreyas Zare (shreyas@technitium.com)
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -147,11 +147,6 @@ namespace DnsServerCore.Dns.ZoneManagers
_zoneManager.ListSubDomains(domain, subDomains);
}
public IReadOnlyList<DnsResourceRecord> QueryRecords(string domain, DnsResourceRecordType type)
{
return _zoneManager.QueryRecords(domain, type);
}
public void SaveZoneFile()
{
List<AuthZoneInfo> allowedZones = _dnsServer.AllowedZoneManager.ListZones();

View File

@@ -1,6 +1,6 @@
/*
Technitium DNS Server
Copyright (C) 2021 Shreyas Zare (shreyas@technitium.com)
Copyright (C) 2022 Shreyas Zare (shreyas@technitium.com)
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -165,11 +165,6 @@ namespace DnsServerCore.Dns.ZoneManagers
_zoneManager.ListSubDomains(domain, subDomains);
}
public IReadOnlyList<DnsResourceRecord> QueryRecords(string domain, DnsResourceRecordType type)
{
return _zoneManager.QueryRecords(domain, type);
}
public void SaveZoneFile()
{
List<AuthZoneInfo> blockedZones = _dnsServer.BlockedZoneManager.ListZones();