Bug 959061 followup: remove else after return

This commit is contained in:
Gavin Sharp 2014-02-08 12:35:04 -08:00
parent 95f73416a1
commit 409532397d

View File

@ -5281,9 +5281,12 @@ function FoldCharset(charset) {
// for the purpose of the check mark.
if (charset == "ISO-8859-8-I") {
return "windows-1255";
} else if (charset == "gb18030") {
}
if (charset == "gb18030") {
return "gbk";
}
return charset;
}