remove leftover console.logs

This commit is contained in:
David Greenspan
2012-08-09 13:27:17 -07:00
parent 64bc13ef5b
commit b7e122ef40

View File

@@ -499,10 +499,8 @@ Spark.renderToRange = function (range, htmlFunc) {
});
};
console.log("----- renderToRange -----");
// Find all of the landmarks in the old contents of the range
visitLandmarksInRange(range, function (landmarkRange, notes) {
console.log("existing: " + pathForRange(landmarkRange));
notes.originalRange = landmarkRange;
});
@@ -512,11 +510,6 @@ Spark.renderToRange = function (range, htmlFunc) {
var tempRange = new LiveRange(Spark._TAG, frag);
// XXX XXX
visitLandmarksInRange(tempRange, function (tempRange, notes) {
console.log("new: " + pathForRange(tempRange));
});
// find preservation roots from matched landmarks inside the
// rerendered region
var pc = renderer.pc;