From ece39fb1b5af37b739ed36798a56906bec78ea5d Mon Sep 17 00:00:00 2001 From: crschmidt Date: Thu, 12 Mar 2009 14:27:53 +0000 Subject: [PATCH] Fix missing semi-colon in Geometry.js, pointed out by rod in trac. (No functional change.) (Closes #1981) git-svn-id: http://svn.openlayers.org/trunk/openlayers@9030 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf --- lib/OpenLayers/Geometry.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/OpenLayers/Geometry.js b/lib/OpenLayers/Geometry.js index fd03f51a65..2dfbeda40b 100644 --- a/lib/OpenLayers/Geometry.js +++ b/lib/OpenLayers/Geometry.js @@ -362,7 +362,7 @@ OpenLayers.Geometry.segmentsIntersect = function(seg1, seg2, options) { dist = Math.sqrt( Math.pow(x - intersection.x, 2) + Math.pow(y - intersection.y, 2) - ) + ); if(dist < tolerance) { intersection.x = x; intersection.y = y;