vendor: lock down some soft dependencies

Locks down:
* go-rundewidth (via tablewriter)
* golang.org/x/sys
* prometheus/{common,procfs} (via prometheus-client)
This commit is contained in:
Anthony Romano
2017-03-06 12:03:45 -08:00
parent 4e2fe050f5
commit 3f187a103b
88 changed files with 2957 additions and 1503 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 {