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:
parent
be9d76f43d
commit
fd03683045
@ -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 New Issue
Block a user