remove console.log() from OpenLayers.Format.WKT , patch from Fredj, #720 (thx)

git-svn-id: http://svn.openlayers.org/trunk/openlayers@3169 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
crschmidt
2007-05-24 06:47:03 +00:00
parent 9deb9611c1
commit 8aa3b4bb46

View File

@@ -222,7 +222,6 @@ OpenLayers.Format.WKT.prototype =
for(var i=0; i<points.length; ++i) {
components.push(this.parse.point.apply(this, [points[i]]).geometry);
}
console.log(components);
return new OpenLayers.Feature.Vector(
new OpenLayers.Geometry.LineString(components)
);