refactor: add more type cases to marshallMapMsgpack
This commit is contained in:
parent
c3a696138a
commit
6c27a978d1
|
@ -80,6 +80,18 @@ func marshallMapMsgpack(enc *msgpack.Encoder, m *linkedhashmap.Map) error {
|
||||||
if err := enc.Encode(&v); err != nil {
|
if err := enc.Encode(&v); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
case string:
|
||||||
|
if err := enc.EncodeString(v); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
case int:
|
||||||
|
if err := enc.EncodeInt(int64(v)); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
case FileVersion:
|
||||||
|
if err := enc.Encode(&v); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
default:
|
default:
|
||||||
return fmt.Errorf("unsupported type for encoding")
|
return fmt.Errorf("unsupported type for encoding")
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue