Skip to content
This repository has been archived by the owner on Oct 15, 2020. It is now read-only.

Commit

Permalink
lint: fix lint issue in trace_mgr
Browse files Browse the repository at this point in the history
  • Loading branch information
jackhorton committed Nov 2, 2017
1 parent b41ebfb commit c3c41bc
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions lib/trace_mgr.js
Original file line number Diff line number Diff line change
Expand Up @@ -582,10 +582,8 @@ function eqFuzzyStacks(s1, s2) {
return false;
}
}
} else {
if (s1.stack[i] !== s2.stack[i]) {
return false;
}
} else if (s1.stack[i] !== s2.stack[i]) {
return false;
}
}

Expand Down

0 comments on commit c3c41bc

Please sign in to comment.