Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
elliotstokes committed Mar 11, 2014
1 parent 91284e6 commit 6fd3303
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/gpx-parse.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,9 @@ var _ParseV10 = function(gpx) {
metadata = null;

extent = new GpxExtent();
metaData = new GpxMetaData(gpx.$.creator, gpx.time, extent);
metadata = new GpxMetaData(gpx.$.creator, gpx.time, extent);

return new GpxResult(metaData, _getWayPoints(gpx.wpt), _getRoutes(gpx.rte), _getTracks(gpx.trk));
return new GpxResult(metadata, _getWayPoints(gpx.wpt), _getRoutes(gpx.rte), _getTracks(gpx.trk));
};

var _ParseV11 = function(gpx) {
Expand Down

0 comments on commit 6fd3303

Please sign in to comment.