Skip to content

Commit 7d6bdda

Browse files
committed
Code cleanup
1 parent 5d21081 commit 7d6bdda

2 files changed

Lines changed: 1 addition & 3 deletions

File tree

include/AdblockPlus/JsEngine.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
#include <functional>
2222
#include <map>
2323
#include <list>
24-
#include <set>
2524
#include <stdexcept>
2625
#include <stdint.h>
2726
#include <string>
@@ -300,7 +299,6 @@ namespace AdblockPlus
300299
std::mutex eventCallbacksMutex;
301300
JsWeakValuesLists jsWeakValuesLists;
302301
std::mutex jsWeakValuesListsMutex;
303-
std::set<std::string> evaluatedJsSources;
304302
};
305303
}
306304

src/Platform.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ JsEngine::EvaluateCallback Platform::GetEvaluateCallback()
8484
jsEngine->Evaluate(jsSources[i + 1], jsSources[i]);
8585
evaluatedJsSources.insert(filename);
8686
break;
87-
}
87+
}
8888
};
8989
}
9090

0 commit comments

Comments
 (0)