From ad8e8f9f245d87f0e58b0d1fc2124f62310df7a0 Mon Sep 17 00:00:00 2001 From: Fabian Reinartz Date: Mon, 24 Aug 2015 18:26:17 +0200 Subject: [PATCH] Upgrade common vendoring --- Godeps/Godeps.json | 4 ++-- .../src/github.com/prometheus/common/model/value.go | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Godeps/Godeps.json b/Godeps/Godeps.json index 2b5748250..bb4d654fb 100644 --- a/Godeps/Godeps.json +++ b/Godeps/Godeps.json @@ -60,11 +60,11 @@ }, { "ImportPath": "github.com/prometheus/common/expfmt", - "Rev": "2502df85be1b9482ed669faa6b7cfe7f850eb08e" + "Rev": "675b18b12eb9d452d0377f1688d62e724f15b882" }, { "ImportPath": "github.com/prometheus/common/model", - "Rev": "2502df85be1b9482ed669faa6b7cfe7f850eb08e" + "Rev": "675b18b12eb9d452d0377f1688d62e724f15b882" }, { "ImportPath": "github.com/prometheus/client_model/go", diff --git a/Godeps/_workspace/src/github.com/prometheus/common/model/value.go b/Godeps/_workspace/src/github.com/prometheus/common/model/value.go index a2f85cfcf..d32c299a7 100644 --- a/Godeps/_workspace/src/github.com/prometheus/common/model/value.go +++ b/Godeps/_workspace/src/github.com/prometheus/common/model/value.go @@ -243,8 +243,8 @@ func (e ValueType) String() string { // Scalar is a scalar value evaluated at the set timestamp. type Scalar struct { - Value SampleValue `json:"value"` - Timestamp Time `json:"timestamp"` + Value SampleValue + Timestamp Time } func (s *Scalar) String() string { @@ -253,8 +253,8 @@ func (s *Scalar) String() string { // String is a string value evaluated at the set timestamp. type String struct { - Value string `json:"value"` - Timestamp Time `json:"timestamp"` + Value string + Timestamp Time } func (s *String) String() string {