Skip to content
Snippets Groups Projects
Commit a29a1223 authored by Tim Emiola's avatar Tim Emiola
Browse files

Merge pull request #737 from murgatroid99/node_fix_lint

Fixed old lint errors
parents f7c87c27 99885c98
No related branches found
No related tags found
No related merge requests found
......@@ -27,6 +27,8 @@
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
'use strict';
var async = require('async');
var fs = require('fs');
var GoogleAuth = require('googleauth');
......@@ -270,7 +272,9 @@ function main(callback) {
if (require.main === module) {
main(function(err) {
if (err) throw err;
if (err) {
throw err;
}
});
}
......
......@@ -27,6 +27,8 @@
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
'use strict';
var async = require('async');
var fs = require('fs');
var parseArgs = require('minimist');
......@@ -110,7 +112,9 @@ function runRecordRoute(callback) {
string: 'db_path'
});
fs.readFile(path.resolve(argv.db_path), function(err, data) {
if (err) callback(err);
if (err) {
callback(err);
}
var feature_list = JSON.parse(data);
var num_points = 10;
......
......@@ -27,6 +27,8 @@
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
'use strict';
var fs = require('fs');
var parseArgs = require('minimist');
var path = require('path');
......@@ -163,7 +165,7 @@ function recordRoute(call, callback) {
}
/* For each point after the first, add the incremental distance from the
* previous point to the total distance value */
if (previous != null) {
if (previous !== null) {
distance += getDistance(previous, point);
}
previous = point;
......@@ -173,7 +175,7 @@ function recordRoute(call, callback) {
point_count: point_count,
feature_count: feature_count,
// Cast the distance to an integer
distance: distance|0,
distance: Math.floor(distance),
// End the timer
elapsed_time: process.hrtime(start_time)[0]
});
......@@ -240,7 +242,9 @@ if (require.main === module) {
string: 'db_path'
});
fs.readFile(path.resolve(argv.db_path), function(err, data) {
if (err) throw err;
if (err) {
throw err;
}
feature_list = JSON.parse(data);
routeServer.listen();
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment