1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-11-06 19:02:30 +01:00

minor code review: it makes no difference, I just prefer no indent there

This commit is contained in:
gorhill 2017-05-20 16:32:42 -04:00
parent be9d76f43d
commit fd03683045
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -99,10 +99,9 @@
if ( i === l ) { break; } if ( i === l ) { break; }
v = vtc[url.charCodeAt(i++)]; v = vtc[url.charCodeAt(i++)];
if ( v === 0 ) { break; } if ( v === 0 ) { break; }
if ( n !== 8 ) { if ( n === 8 ) { continue; }
th = th * 64 + v; th = th * 64 + v;
n += 1; n += 1;
}
} }
tokens[j++] = th; tokens[j++] = th;
tokens[j++] = ti; tokens[j++] = ti;