X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=common%2Fmodules%2Fprotocol.jsm;fp=common%2Fmodules%2Fprotocol.jsm;h=f73e209247102989d14f113b4518ba3d51ce752e;hb=3d837eb266a3a01d424192aa4ec1a167366178c5;hp=82b59a39f2246d7a1a8fe09e1345a14dd08f8df0;hpb=d8a3bcebff36df7b128b36e0b57b715479e155a0;p=dactyl.git diff --git a/common/modules/protocol.jsm b/common/modules/protocol.jsm index 82b59a3..f73e209 100644 --- a/common/modules/protocol.jsm +++ b/common/modules/protocol.jsm @@ -44,9 +44,9 @@ function NetError(orig, error) { originalURI: orig, - asyncOpen: function () { throw error || Cr.NS_ERROR_FILE_NOT_FOUND }, + asyncOpen: function () { throw error || Cr.NS_ERROR_FILE_NOT_FOUND; }, - open: function () { throw error || Cr.NS_ERROR_FILE_NOT_FOUND } + open: function () { throw error || Cr.NS_ERROR_FILE_NOT_FOUND; } }).data.QueryInterface(Ci.nsIChannel); } function RedirectChannel(to, orig, time, message) { @@ -72,7 +72,7 @@ function Protocol(scheme, classID, contentBase) { contentBase: contentBase, - _xpcom_factory: JSMLoader.Factory(Protocol), + _xpcom_factory: JSMLoader.Factory(Protocol) }; return Protocol; } @@ -259,4 +259,4 @@ XMLChannel.prototype = { endModule(); -// vim: set fdm=marker sw=4 ts=4 et ft=javascript: +// vim: set fdm=marker sw=4 sts=4 ts=8 et ft=javascript: