Code Review: Get rid of cruft.

This commit is contained in:
Matt T. Proud 2013-08-12 12:59:57 +02:00
parent 89432f861e
commit 58af37fb72
1 changed files with 0 additions and 5 deletions

View File

@ -14,7 +14,6 @@
package extraction package extraction
import ( import (
"fmt"
"io" "io"
"time" "time"
@ -69,18 +68,15 @@ func (r *Result) equal(o *Result) bool {
if r.Err != o.Err { if r.Err != o.Err {
if r.Err == nil || o.Err == nil { if r.Err == nil || o.Err == nil {
fmt.Println("err nil")
return false return false
} }
if r.Err.Error() != o.Err.Error() { if r.Err.Error() != o.Err.Error() {
fmt.Println("err str")
return false return false
} }
} }
if len(r.Samples) != len(o.Samples) { if len(r.Samples) != len(o.Samples) {
fmt.Println("samples len")
return false return false
} }
@ -88,7 +84,6 @@ func (r *Result) equal(o *Result) bool {
other := o.Samples[i] other := o.Samples[i]
if !mine.Equal(other) { if !mine.Equal(other) {
fmt.Println("samples", mine, other)
return false return false
} }
} }