1
0
mirror of https://github.com/rancher/norman.git synced 2025-09-05 01:00:36 +00:00

vendor change

This commit is contained in:
kinarashah
2019-09-25 14:32:29 -07:00
committed by Alena Prokharchyk
parent a40a48add2
commit 5bbe7031a6
607 changed files with 114217 additions and 60063 deletions

View File

@@ -150,13 +150,7 @@ func (t *Time) UnmarshalJSON(b []byte) error {
return err
}
// If the value was something like -0.1 the negative is lost in the
// parsing because of the leading zero, this ensures that we capture it.
if len(p[0]) > 0 && p[0][0] == '-' && v+va > 0 {
*t = Time(v+va) * -1
} else {
*t = Time(v + va)
}
*t = Time(v + va)
default:
return fmt.Errorf("invalid time %q", string(b))