Skip to content

Commit e8996a3

Browse files
committed
Remove redundant type annotation
1 parent 116000e commit e8996a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compiler/tracing.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ namespace ts.tracing {
106106
* In the future we might implement an exit handler to dump unfinished events which would deprecate
107107
* these operations.
108108
*/
109-
export function push(phase: Phase, name: string, args?: object, separateBeginAndEnd: boolean = false) {
109+
export function push(phase: Phase, name: string, args?: object, separateBeginAndEnd = false) {
110110
if (!traceFd) return;
111111
if (separateBeginAndEnd) {
112112
writeEvent("B", phase, name, args);

0 commit comments

Comments
 (0)