1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 16:02:26 +01:00

Add missing semicolons.

This commit is contained in:
Doug Kearns
2009-06-02 16:56:28 +10:00
parent 95dffaf95a
commit 6d7b94daa6
17 changed files with 56 additions and 55 deletions

View File

@@ -27,7 +27,7 @@ function Services()
ifaces = Array.concat(ifaces);
try
{
let res = Cc[classes][meth || "getService"](ifaces.shift())
let res = Cc[classes][meth || "getService"](ifaces.shift());
ifaces.forEach(function (iface) res.QueryInterface(iface));
return res;
}