Remove redundant type annotation

This commit is contained in:
Andrew Casey
2020-11-11 13:56:27 -08:00
parent 116000e548
commit e8996a34a9

View File

@@ -106,7 +106,7 @@ namespace ts.tracing {
* In the future we might implement an exit handler to dump unfinished events which would deprecate
* these operations.
*/
export function push(phase: Phase, name: string, args?: object, separateBeginAndEnd: boolean = false) {
export function push(phase: Phase, name: string, args?: object, separateBeginAndEnd = false) {
if (!traceFd) return;
if (separateBeginAndEnd) {
writeEvent("B", phase, name, args);