Upgrade common vendoring

This commit is contained in:
Fabian Reinartz 2015-08-24 18:26:17 +02:00
parent d6d88f8950
commit ad8e8f9f24
2 changed files with 6 additions and 6 deletions

4
Godeps/Godeps.json generated
View File

@ -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",

View File

@ -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 {