[Pkg-mozext-commits] [greasemonkey] 04/16: Add missing semicolons.

David Prévot taffit at moszumanska.debian.org
Thu Jan 30 13:42:28 UTC 2014


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

taffit pushed a commit to branch master
in repository greasemonkey.

commit a552707fd51134c4d344986faf3276d8ee59c0de
Author: Anthony Lieuallen <arantius at gmail.com>
Date:   Wed Jan 29 11:47:07 2014 -0500

    Add missing semicolons.
---
 modules/remoteScript.js | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/modules/remoteScript.js b/modules/remoteScript.js
index 6970336..e7aa54c 100644
--- a/modules/remoteScript.js
+++ b/modules/remoteScript.js
@@ -139,7 +139,7 @@ DownloadListener.prototype = {
     var progress;
     if (-1 == aProgressMax || 0 == aProgressMax
         || 0xFFFFFFFFFFFFFFFF == aProgressMax) {
-      progress = 0
+      progress = 0;
     } else {
       progress = aProgress / aProgressMax;
     }
@@ -206,7 +206,7 @@ DownloadListener.prototype = {
   onStatus: function(aRequest, aContext, aStatus, aStatusArg) { },
 
   // nsIInterfaceRequestor
-  getInterface: function(aIID) { return this.QueryInterface(aIID) },
+  getInterface: function(aIID) { return this.QueryInterface(aIID); },
 
   // nsISupports
   QueryInterface: XPCOMUtils.generateQI([
@@ -214,7 +214,7 @@ DownloadListener.prototype = {
       Ci.nsIStreamListener,
       Ci.nsISupports,
       ]),
-}
+};
 
 /////////////////////////////// Public Interface ///////////////////////////////
 

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-mozext/greasemonkey.git



More information about the Pkg-mozext-commits mailing list