Skip to content

Commit 0ffa722

Browse files
Removed superfluous type assertion.
1 parent 9d8319d commit 0ffa722

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compiler/checker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5996,7 +5996,7 @@ module ts {
59965996
}
59975997
else {
59985998
// Ordinary case - simple function invocation.
5999-
return (<CallExpression>callExpression).typeArguments;
5999+
return callExpression.typeArguments;
60006000
}
60016001
}
60026002

0 commit comments

Comments
 (0)