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

Commit c3c41bc

Browse files
committed
lint: fix lint issue in trace_mgr
1 parent b41ebfb commit c3c41bc

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

lib/trace_mgr.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -582,10 +582,8 @@ function eqFuzzyStacks(s1, s2) {
582582
return false;
583583
}
584584
}
585-
} else {
586-
if (s1.stack[i] !== s2.stack[i]) {
587-
return false;
588-
}
585+
} else if (s1.stack[i] !== s2.stack[i]) {
586+
return false;
589587
}
590588
}
591589

0 commit comments

Comments
 (0)