Bug 1356569 - Remove addObserver's last parameter when it is false, r=jaws.

This commit is contained in:
Florian Queze
2017-04-14 21:51:38 +02:00
parent b4ffb12bfb
commit d3c36892fa
835 changed files with 1456 additions and 1475 deletions

View File

@@ -47,8 +47,8 @@ ContentProcessSingleton.prototype = {
observe(subject, topic, data) {
switch (topic) {
case "app-startup": {
Services.obs.addObserver(this, "console-api-log-event", false);
Services.obs.addObserver(this, "xpcom-shutdown", false);
Services.obs.addObserver(this, "console-api-log-event");
Services.obs.addObserver(this, "xpcom-shutdown");
cpmm.addMessageListener("DevTools:InitDebuggerServer", this);
TelemetryController.observe(null, topic, null);
break;