1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-10-06 09:37:12 +02:00

remove stray console.log used for development purpose

This commit is contained in:
gorhill 2017-10-06 13:47:39 -04:00
parent ca39be2770
commit 49c19f2dcc
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -1027,9 +1027,6 @@ FilterContainer.prototype.compileProceduralSelector = (function() {
var compiled = compile(raw);
if ( compiled !== undefined ) {
compiled.raw = decompile(compiled);
if ( compiled.raw !== raw ) {
console.log(raw, '\n', compiled.raw, '\n');
}
compiled = JSON.stringify(compiled);
}
lastProceduralSelectorCompiled = compiled;