Update go dependencies

This commit is contained in:
Manuel de Brito Fontes 2017-08-16 09:09:05 -03:00
parent 6438c9f6fe
commit baf9cc47bd
53 changed files with 2802 additions and 374 deletions

View file

@ -129,11 +129,8 @@ func (s *Sample) Equal(o *Sample) bool {
if !s.Timestamp.Equal(o.Timestamp) {
return false
}
if s.Value.Equal(o.Value) {
return false
}
return true
return s.Value.Equal(o.Value)
}
func (s Sample) String() string {