diff options
| author | Jeff Carr <[email protected]> | 2025-10-07 07:32:43 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-07 07:32:43 -0500 |
| commit | 920eb20a447e1b6c08f433ac1857263dc21da41d (patch) | |
| tree | 2582a379e81e41eb7683cc6ecd87e03a98ca5b86 | |
| parent | c5c6afea125875e635efb26da039d83d65e7d67f (diff) | |
rm debugging junk
| -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) |
