fix: linter issues

This commit is contained in:
James Houlahan
2020-08-06 10:01:00 +02:00
parent 37186846db
commit 7e1af9ff4e
4 changed files with 27 additions and 730 deletions

View File

@ -63,7 +63,7 @@ func (w *Writer) shouldFilter(p *Part) bool {
}
for _, b := range p.Body {
if uint8(b) > 1<<7 {
if b > 1<<7 {
return true
}
}