mirror of
https://github.com/ProtonMail/proton-bridge.git
synced 2026-02-07 09:38:33 +00:00
refactor: remove dead code
This commit is contained in:
@ -97,3 +97,13 @@ func selectDecoderFromParams(params map[string]string) *encoding.Decoder {
|
||||
|
||||
return decoder
|
||||
}
|
||||
|
||||
func (p *Part) is7BitClean() bool {
|
||||
for _, b := range p.Body {
|
||||
if b > 1<<7 {
|
||||
return false
|
||||
}
|
||||
}
|
||||
|
||||
return true
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user