From 53de6bd81ce4c2c98e90b589bac4da4900295f75 Mon Sep 17 00:00:00 2001 From: Miek Gieben Date: Fri, 16 Dec 2011 19:36:33 +0100 Subject: [PATCH] Remove these methods --- update.go | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/update.go b/update.go index 76192f62..5a7435c9 100644 --- a/update.go +++ b/update.go @@ -34,22 +34,6 @@ // package dns -func (u *Msg) Zone() []Question { - return u.Question -} - -func (u *Msg) Prereq() []RR { - return u.Answer -} - -func (u *Msg) Update() []RR { - return u.Ns -} - -func (u *Msg) Additional() []RR { - return u.Extra -} - // NewUpdate creates a new DNS update packet, which is a normal DNS message. func NewUpdate(zone string, class uint16) *Msg { u := new(Msg)