1
0

Fixed a few unneeded breaks

This commit is contained in:
Tycho
2014-03-14 07:12:00 -07:00
parent 58fa8b40bf
commit b829c9b14e
3 changed files with 3 additions and 3 deletions

View File

@@ -454,7 +454,6 @@ AString & UTF8ToRawBEUTF16(const char * a_UTF8, size_t a_UTF8Length, AString & a
if (!isLegalUTF8(source, extraBytesToRead + 1))
{
return a_UTF16;
break;
}
// The cases all fall through. See "Note A" below.