diff options
| -rw-r--r-- | wit.go | 7 |
1 files changed, 0 insertions, 7 deletions
@@ -5,7 +5,6 @@ import ( "os" "strings" - "go.wit.com/dev/davecgh/spew" "go.wit.com/lib/fhelp" ) @@ -128,9 +127,6 @@ func (m *Machine) InitWitMirrors() error { func (all *Packages) AddIfNewer(p *Package) { check := all.FindByName(p.Name) if check == nil { - if p.Name == "zood" { - spew.Dump(p) - } all.Append(p) return } @@ -141,9 +137,6 @@ func (all *Packages) AddIfNewer(p *Package) { return } if v1.LessThan(v2) { - if p.Name == "zood" { - spew.Dump(p) - } // log.Info("removing", v1, "using", v2) all.Delete(check) all.Append(p) |
