mirror of
https://github.com/wader/fq.git
synced 2024-11-23 18:56:52 +03:00
drop indented else block per lint
This commit is contained in:
parent
236fbc17b5
commit
fb1a91ac3c
@ -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))
|
||||
|
Loading…
Reference in New Issue
Block a user