fix duplicate case after rebase

This commit is contained in:
Matt Jaffee 2017-03-07 15:44:53 -06:00
parent 0202c9b849
commit 7ffeeeede3

View file

@ -266,8 +266,6 @@ func txUpdateAttrs(tx *bolt.Tx, id uint64, m map[string]interface{}) (map[string
attr[k] = uint64(v)
case uint:
attr[k] = uint64(v)
case float64:
attr[k] = uint64(v)
case int64:
attr[k] = uint64(v)
case string, uint64, bool, float64: