mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-10 09:07:54 +01: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; }
|
||||
v = vtc[url.charCodeAt(i++)];
|
||||
if ( v === 0 ) { break; }
|
||||
if ( n !== 8 ) {
|
||||
th = th * 64 + v;
|
||||
n += 1;
|
||||
}
|
||||
if ( n === 8 ) { continue; }
|
||||
th = th * 64 + v;
|
||||
n += 1;
|
||||
}
|
||||
tokens[j++] = th;
|
||||
tokens[j++] = ti;
|
||||
|
|
Loading…
Reference in a new issue