1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Remove the json alterations when decoding

This commit is contained in:
Guillaume J. Charmes 2013-03-22 14:27:10 -07:00
parent 966cddf26b
commit dc2d930520

View file

@ -21,8 +21,6 @@ func NewImgJson(src []byte) (*Image, error) {
Debugf("Json string: {%s}\n", src) Debugf("Json string: {%s}\n", src)
// FIXME: Is there a cleaner way to "puryfy" the input json? // FIXME: Is there a cleaner way to "puryfy" the input json?
src = []byte(strings.Replace(string(src), "null", "\"\"", -1))
if err := json.Unmarshal(src, ret); err != nil { if err := json.Unmarshal(src, ret); err != nil {
return nil, err return nil, err
} }