Removed an unused constructor parameter from PasswordEngine.

This commit is contained in:
Atul Varma 2008-06-18 12:04:49 -07:00
Родитель b48aab609f
Коммит 4267f258ce
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -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"; },