1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-15 07:22:28 +02:00

code review: remove pointless test

This commit is contained in:
Raymond Hill 2018-01-04 17:55:59 -05:00
parent 053476949c
commit 21b52ec10b
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -112,7 +112,7 @@
}
if ( c < 0x100 ) {
buf[o++] = c;
} else if ( c >= 0x100 && c < 0x180 ) {
} else if ( c < 0x180 ) {
buf[o++] = cp1250_range0[c - 0x100];
} else if ( c >= 0x2010 && c < 0x2040 ) {
buf[o++] = cp125x_range0[c - 0x2010];