From af2f3b7a70d04375602adb6173e73a189772e774 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Junod?= Date: Tue, 29 Mar 2011 09:43:20 +0000 Subject: [PATCH] remove semicolons after the if closing curly bracket. non functional change git-svn-id: http://svn.openlayers.org/trunk/openlayers@11740 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf --- lib/OpenLayers/Map.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/OpenLayers/Map.js b/lib/OpenLayers/Map.js index f7f2a0aba7..0789c4687a 100644 --- a/lib/OpenLayers/Map.js +++ b/lib/OpenLayers/Map.js @@ -1704,10 +1704,10 @@ OpenLayers.Map = OpenLayers.Class({ if (wrapDateLine) { if (this.maxPx.x > maxX) { this.maxPx.x -= (maxX - minX); - }; + } if (this.minPx.x < minX) { this.minPx.x += (maxX - minX); - }; + } } } if (dy) {