Skip to content

Commit

Permalink
Remove two spaces that eslint now thinks are a problem
Browse files Browse the repository at this point in the history
  • Loading branch information
mattcolegate committed Aug 2, 2019
1 parent 5ca52e3 commit c1f1c54
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/appmetrics-dash.js
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ exports.monitor = function(options) {

if (!options.server) {
// Create and use our own express server on the user-specified port/host.
var port = options.port || 3001; // Set a default port if one is not supplied
var port = options.port || 3001; // Set a default port if one is not supplied
var host = options.host;
var app = express();
server = require('http').Server(app);
Expand Down
2 changes: 1 addition & 1 deletion public/profiling.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ socket.on('profiling', (profilingSample) => {
// console.log("Adding sample: " + profiling_row.time);
// console.dir(profiling_row);

let profiling_row = JSON.parse(profilingSample); // parses the data into a JSON array
let profiling_row = JSON.parse(profilingSample); // parses the data into a JSON array
let indexed_nodes = {};
// Index this so we can find parents faster.
profiling_row.functions.map((node) => { indexed_nodes[node.self] = node; });
Expand Down

0 comments on commit c1f1c54

Please sign in to comment.