From dbe3020877d978e0fd8c50030b6dc42daf749672 Mon Sep 17 00:00:00 2001 From: John Firebaugh Date: Tue, 5 Mar 2013 19:52:17 -0800 Subject: [PATCH] Remove outdated comment --- js/id/core/way.js | 6 ------ 1 file changed, 6 deletions(-) diff --git a/js/id/core/way.js b/js/id/core/way.js index 65dfb5a2e..3e9aa8571 100644 --- a/js/id/core/way.js +++ b/js/id/core/way.js @@ -40,12 +40,6 @@ _.extend(iD.Way.prototype, { return this.nodes.length > 0 && this.first() === this.last(); }, - // a way is an area if: - // - // - area=yes - // - closed and - // - doesn't have area=no - // - doesn't have highway tag isArea: function() { if (this.tags.area === 'yes') return true;