Remove unused variable

This commit is contained in:
John Firebaugh
2014-01-06 16:26:55 -08:00
parent 4bf21cbc8a
commit 089924ac38
2 changed files with 0 additions and 2 deletions
-1
View File
@@ -6,7 +6,6 @@ iD.Graph = function(other, mutable) {
this.entities = _.assign(Object.create(base.entities), other.entities);
this._parentWays = _.assign(Object.create(base.parentWays), other._parentWays);
this._parentRels = _.assign(Object.create(base.parentRels), other._parentRels);
this.inherited = true;
} else {
this.entities = Object.create({});
-1
View File
@@ -257,7 +257,6 @@ iD.History = function(context) {
});
}
stack[0].graph.inherited = false;
dispatch.change();
return history;