remove superfluous parentheses in control statements in stdlib source

since this appears to be the convention followed elsewhere in the code base.
This commit is contained in:
JP Simard
2016-12-31 18:40:15 -08:00
parent 474096b9cb
commit 7301b79342
10 changed files with 24 additions and 24 deletions

View File

@@ -219,7 +219,7 @@ public struct UTF8 : UnicodeCodec {
// Non-ASCII, proceed to buffering mode.
_decodeBuffer = UInt32(codeUnit)
_bitsInBuffer = 8
} else if (_decodeBuffer & 0x80 == 0) {
} else if _decodeBuffer & 0x80 == 0 {
// ASCII in buffer. We don't refill the buffer so we can return
// to bufferless mode once we've exhausted it.
let codeUnit = _decodeBuffer & 0xff