From 33f18499e5ea89ef9afb2a96e3fe642a394e00c3 Mon Sep 17 00:00:00 2001 From: Anant Narayanan Date: Fri, 23 May 2008 10:28:43 -0700 Subject: [PATCH] Correct syntax error in trackers.js --- services/sync/modules/trackers.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/sync/modules/trackers.js b/services/sync/modules/trackers.js index 3a6bb436c4e4..cfcefe825658 100644 --- a/services/sync/modules/trackers.js +++ b/services/sync/modules/trackers.js @@ -212,7 +212,7 @@ FormsTracker.prototype = { } return this.__formDB; - } + }, /* nsIFormSubmitObserver is not available in JS. * To calculate scores, we instead just count the changes in @@ -240,7 +240,7 @@ FormsTracker.prototype = { return 100; else return this._score; - }, + }, resetScore: function FormsTracker_resetScore() { var stmnt = this._formDB.createStatement("SELECT COUNT(fieldname) FROM moz_formhistory");