Removed an unused constructor parameter from PasswordEngine.

This commit is contained in:
Atul Varma 2008-06-18 12:04:49 -07:00
parent 22a628bfea
commit ce9f6b0af8

View File

@ -28,8 +28,8 @@ function _hashLoginInfo(aLogin) {
return Utils.sha1(loginKey);
}
function PasswordEngine(pbeId) {
this._init(pbeId);
function PasswordEngine() {
this._init();
}
PasswordEngine.prototype = {
get name() { return "passwords"; },