1
1
mirror of https://github.com/wader/fq.git synced 2024-10-06 16:39:48 +03:00

drop indented else block per lint

This commit is contained in:
David McDonald 2022-10-07 13:15:22 -05:00
parent 236fbc17b5
commit fb1a91ac3c

View File

@ -105,9 +105,8 @@ func decodeItem(d *decode.D, p *plist) any {
})
if n*8 <= 64 {
return d.FieldU("value", int(n*8))
} else {
return d.FieldUBigInt("value", int(n))
}
return d.FieldUBigInt("value", int(n))
case elementTypeReal:
n := 1 << decodeSize(d)
d.FieldValueU("size", uint64(n))