Bug 889413 - FormWrapper._finalize is not a function. r=markh

This commit is contained in:
Richard Newman 2013-07-02 15:09:17 -07:00
parent a19a1cb490
commit 448678d26c

View File

@ -204,7 +204,6 @@ function FormTracker(name, engine) {
Tracker.call(this, name, engine);
Svc.Obs.add("weave:engine:start-tracking", this);
Svc.Obs.add("weave:engine:stop-tracking", this);
Svc.Obs.add("profile-change-teardown", this);
}
FormTracker.prototype = {
__proto__: Tracker.prototype,
@ -246,9 +245,6 @@ FormTracker.prototype = {
this.trackEntry(guid);
}
break;
case "profile-change-teardown":
FormWrapper._finalize();
break;
}
},