From 6900c90bc5c0a3682999d407049dee6813ee9e92 Mon Sep 17 00:00:00 2001 From: Tom Payne Date: Tue, 21 May 2013 12:46:54 +0200 Subject: [PATCH] Remove unused variables in examples --- examples/kml.js | 1 - 1 file changed, 1 deletion(-) diff --git a/examples/kml.js b/examples/kml.js index 3892511508..8c228d611c 100644 --- a/examples/kml.js +++ b/examples/kml.js @@ -67,7 +67,6 @@ xhr.open('GET', url, true); xhr.onload = function() { if (xhr.status == 200) { // this is silly to have to tell the layer the destination projection - var projection = map.getView().getProjection(); vector.parseFeatures(xhr.responseText, kml, epsg4326); } };