linting
This commit is contained in:
@@ -102,7 +102,7 @@ func encodeUTF16BE(text string, withBOM bool) []byte {
|
||||
}
|
||||
|
||||
for _, v := range encoded {
|
||||
out = append(out, byte(v>>8), byte(v))
|
||||
out = append(out, byte(v>>8), byte(v&0x00FF))
|
||||
}
|
||||
|
||||
return out
|
||||
|
||||
Reference in New Issue
Block a user