[Pkg-mozext-commits] [adblock-plus-element-hiding-helper] 424/483: Removed unnecessary parentheses

David Prévot taffit at moszumanska.debian.org
Thu Jan 22 21:42:03 UTC 2015


This is an automated email from the git hooks/post-receive script.

taffit pushed a commit to branch master
in repository adblock-plus-element-hiding-helper.

commit 7ecd52b943d30a834da1aa0b5bedc19eb90b5e87
Author: Wladimir Palant <trev at adblockplus.org>
Date:   Wed Jun 20 22:56:42 2012 +0200

    Removed unnecessary parentheses
---
 lib/inspectorObserver.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/inspectorObserver.js b/lib/inspectorObserver.js
index 8240e44..dd01c88 100644
--- a/lib/inspectorObserver.js
+++ b/lib/inspectorObserver.js
@@ -12,7 +12,7 @@ let InspectorObserver =
   init: function()
   {
     Services.obs.addObserver(this, "inspector-opened", true);
-    onShutdown.add((function()
+    onShutdown.add(function()
     {
       Services.obs.removeObserver(this, "inspector-opened");
 
@@ -24,7 +24,7 @@ let InspectorObserver =
         if (button)
           button.parentNode.removeChild(button);
       }
-    }).bind(this));
+    }.bind(this));
   },
 
   get inspectorButton()

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-mozext/adblock-plus-element-hiding-helper.git



More information about the Pkg-mozext-commits mailing list