Remove unused

This commit is contained in:
John Firebaugh
2013-02-02 19:55:52 -05:00
parent ec602a7db7
commit 80a5a083b0
5 changed files with 1 additions and 79 deletions
+1 -10
View File
@@ -43,7 +43,6 @@ iD.Entity.prototype = {
if (!this.id && this.type) {
this.id = iD.Entity.id(this.type);
this._updated = true;
}
if (iD.debug) {
@@ -63,7 +62,7 @@ iD.Entity.prototype = {
},
update: function(attrs) {
return iD.Entity(this, attrs, {_updated: true});
return iD.Entity(this, attrs);
},
mergeTags: function(tags) {
@@ -80,14 +79,6 @@ iD.Entity.prototype = {
return this.update({tags: merged});
},
created: function() {
return this._updated && this.osmId().charAt(0) === '-';
},
modified: function() {
return this._updated && this.osmId().charAt(0) !== '-';
},
intersects: function(extent, resolver) {
return this.extent(resolver).intersects(extent);
},