diff options
author | Matěj Cepl <mcepl@redhat.com> | 2010-09-25 23:14:00 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2010-09-25 23:14:00 +0200 |
commit | b1eb91d2068b2ea4b983977412821d4fa9640e4e (patch) | |
tree | 3eb3e0da57fc5b290d435353331ce8b188756b4e /lib/passwords.js | |
parent | fcafe9d584797044fc24be1b3fb67da284e0cf17 (diff) | |
download | bugzilla-triage-b1eb91d2068b2ea4b983977412821d4fa9640e4e.tar.gz |
Massive reformatting to make Eclipse happy
Diffstat (limited to 'lib/passwords.js')
-rw-r--r-- | lib/passwords.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/passwords.js b/lib/passwords.js index 49b945f..cc9c16b 100644 --- a/lib/passwords.js +++ b/lib/passwords.js @@ -2,7 +2,9 @@ // Released under the MIT/X11 license // http://www.opensource.org/licenses/mit-license.php "use strict"; -var {Cc,Ci,components} = require("chrome"); +var Cc = require("chrome").Cc; +var Ci = require("chrome").Ci; +var components = require("chrome").components; function getLoginInfo(username, pass, domain, realm) { |