--- a/services/sync/modules/engines/history.js
+++ b/services/sync/modules/engines/history.js
@@ -110,21 +110,17 @@ HistoryStore.prototype = {
let stor = Cc["@mozilla.org/storage/service;1"].
getService(Ci.mozIStorageService);
let db = stor.openDatabase(file);
this.__defineGetter__("_histDB_30", function() db);
return db;
},
get _db() {
- // FIXME
- //if (fx3.0)
- // return this._histDB_30;
- //else
- return this._hsvc.DBConnection;
+ return this._hsvc.DBConnection;
},
_fetchRow: function HistStore__fetchRow(stm, params, retparams) {
try {
for (let key in params) {
stm.params[key] = params[key];
}
if (!stm.step())