From 6bdd0cfa894126605fe60ac04a1c1e60f5164284 Mon Sep 17 00:00:00 2001 From: SilentSpike Date: Mon, 21 Jan 2019 16:34:18 +0000 Subject: [PATCH] Fix missing semicolons --- modules/services/improveOSM.js | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/modules/services/improveOSM.js b/modules/services/improveOSM.js index 5fd2145c2..6f6e17573 100644 --- a/modules/services/improveOSM.js +++ b/modules/services/improveOSM.js @@ -212,7 +212,7 @@ export default { _erCache.data[d.id] = d; _erCache.rtree.insert(encodeErrorRtree(d)); - }) + }); } // Tiles at high zoom == missing roads @@ -225,10 +225,7 @@ export default { comments: null, error_subtype: geoType, error_type: k, - identifier: { - x: feature.x, - y: feature.y - }, + identifier: { x: feature.x, y: feature.y }, status: feature.status }); @@ -239,7 +236,7 @@ export default { _erCache.data[d.id] = d; _erCache.rtree.insert(encodeErrorRtree(d)); - }) + }); } // Entities at high zoom == turn restrictions @@ -281,7 +278,7 @@ export default { _erCache.data[d.id] = d; _erCache.rtree.insert(encodeErrorRtree(d)); - }) + }); } } ); @@ -289,7 +286,7 @@ export default { _erCache.inflight[tile.id] = requests; dispatch.call('loaded'); - }) + }); }, postUpdate: function(d, callback) {