From 58af37fb720110f1aa892f0bfb53b98a6567e41d Mon Sep 17 00:00:00 2001 From: "Matt T. Proud" Date: Mon, 12 Aug 2013 12:59:57 +0200 Subject: [PATCH] Code Review: Get rid of cruft. --- extraction/processor.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/extraction/processor.go b/extraction/processor.go index 48b5feb..e832452 100644 --- a/extraction/processor.go +++ b/extraction/processor.go @@ -14,7 +14,6 @@ package extraction import ( - "fmt" "io" "time" @@ -69,18 +68,15 @@ func (r *Result) equal(o *Result) bool { if r.Err != o.Err { if r.Err == nil || o.Err == nil { - fmt.Println("err nil") return false } if r.Err.Error() != o.Err.Error() { - fmt.Println("err str") return false } } if len(r.Samples) != len(o.Samples) { - fmt.Println("samples len") return false } @@ -88,7 +84,6 @@ func (r *Result) equal(o *Result) bool { other := o.Samples[i] if !mine.Equal(other) { - fmt.Println("samples", mine, other) return false } }