Skip to content

Commit

Permalink
Removed superfluous type assertion.
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielRosenwasser committed Jan 27, 2015
1 parent 9d8319d commit 0ffa722
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/compiler/checker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5996,7 +5996,7 @@ module ts {
}
else {
// Ordinary case - simple function invocation.
return (<CallExpression>callExpression).typeArguments;
return callExpression.typeArguments;
}
}

Expand Down

0 comments on commit 0ffa722

Please sign in to comment.