diff options
Diffstat (limited to 'middleware/file/tree/elem.go')
-rw-r--r-- | middleware/file/tree/elem.go | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/middleware/file/tree/elem.go b/middleware/file/tree/elem.go index 6785a6849..785d64660 100644 --- a/middleware/file/tree/elem.go +++ b/middleware/file/tree/elem.go @@ -1,9 +1,6 @@ package tree -import ( - "github.com/miekg/coredns/middleware" - "github.com/miekg/dns" -) +import "github.com/miekg/dns" type Elem struct { m map[uint16][]dns.RR @@ -91,8 +88,8 @@ func (e *Elem) Delete(rr dns.RR) (empty bool) { return } -// Less is a tree helper function that calls middleware.Less. -func Less(a *Elem, name string) int { return middleware.Less(name, a.Name()) } +// Less is a tree helper function that calls less. +func Less(a *Elem, name string) int { return less(name, a.Name()) } // Assuming the same type and name this will check if the rdata is equal as well. func equalRdata(a, b dns.RR) bool { |