Eliminate temporary

This commit is contained in:
John Firebaugh
2012-11-30 07:17:32 -08:00
parent 23f435759e
commit f06ae6b70e

View File

@@ -32,8 +32,7 @@ iD.Graph.prototype = {
replace: function(entity, annotation) {
var entities = _.clone(this.entities);
entities[entity.id] = entity;
var g = iD.Graph(entities, annotation);
return g;
return iD.Graph(entities, annotation);
},
remove: function(entity, annotation) {