mirror of
https://github.com/gorhill/uBlock.git
synced 2026-03-11 09:04:36 +00:00
minor code review: it makes no difference, I just prefer no indent there
This commit is contained in:
parent
be9d76f43d
commit
fd03683045
1 changed files with 3 additions and 4 deletions
|
|
@ -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;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue