remove debugging

This commit is contained in:
Miek Gieben 2012-08-04 11:57:11 -07:00
parent fba7b11981
commit bd400abbb9
1 changed files with 0 additions and 2 deletions

View File

@ -108,11 +108,9 @@ func (z *Zone) Find(s string) *ZoneData {
// Predecessor wraps radix.Predecessor.
func (z *Zone) Predecessor(s string) *ZoneData {
println("looking for", toRadixName(s))
zd := z.Radix.Predecessor(toRadixName(s))
if zd == nil {
return nil
}
println("Found", zd.Key())
return zd.Value.(*ZoneData)
}