Comply with gofmt -s

This commit is contained in:
Panagiotis Georgiadis 2021-03-25 02:29:16 +01:00
parent 236a091997
commit db99c66d25
No known key found for this signature in database
GPG Key ID: A5B9AF563B15B24F
1 changed files with 0 additions and 1 deletions

View File

@ -85,7 +85,6 @@ func (v *StreamReader) ReadUInt64() (uint64, error) {
return 0, err
}
return uint64(b[0]) | uint64(b[1])<<8 | uint64(b[2])<<16 | uint64(b[3])<<24 |
uint64(b[4])<<32 | uint64(b[5])<<40 | uint64(b[6])<<48 | uint64(b[7])<<56, err
}