diff --git a/suite/common/history/treeView.js b/suite/common/history/treeView.js
index 4bef73bba6..29dcd7dfc4 100644
--- a/suite/common/history/treeView.js
+++ b/suite/common/history/treeView.js
@@ -599,24 +599,6 @@ PlacesTreeView.prototype = {
}
},
- /**
- * Be careful, the parameter 'aIndex' here specifies the node's index in the
- * parent node, not the visible index.
- */
- nodeReplaced:
- function PTV_nodeReplaced(aParentNode, aOldNode, aNewNode, aIndexDoNotUse) {
- NS_ASSERT(this._result, "Got a notification but have no result!");
- if (!this._tree || !this._result)
- return;
-
- // Nothing to do if the replaced node was not set.
- var row = this._getRowForNode(aOldNode);
- if (row != -1) {
- this._rows[row] = aNewNode;
- this._tree.invalidateRow(row);
- }
- },
-
// This is _invalidateCellValue in the original implementation.
invalidateNode: function PTV_invalidateNode(aNode) {
NS_ASSERT(this._result, "Got a notification but have no result!");
diff --git a/suite/common/places/browserPlacesViews.js b/suite/common/places/browserPlacesViews.js
index 16c42fa958..1057826e37 100644
--- a/suite/common/places/browserPlacesViews.js
+++ b/suite/common/places/browserPlacesViews.js
@@ -574,26 +574,6 @@ PlacesViewBase.prototype = {
}
},
- nodeReplaced:
- function PVB_nodeReplaced(aParentPlacesNode, aOldPlacesNode, aNewPlacesNode, aIndex) {
- let parentElt = this._getDOMNodeForPlacesNode(aParentPlacesNode);
- if (parentElt._built) {
- let elt = this._getDOMNodeForPlacesNode(aOldPlacesNode);
-
- // Here we need the