Skip to content
This repository was archived by the owner on Dec 18, 2018. It is now read-only.

Commit 6d2b466

Browse files
committed
remove extraneous comment
1 parent 08827ae commit 6d2b466

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

client-ts/Microsoft.AspNetCore.SignalR.Client.TS/HubConnection.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,8 @@ export class HubConnection {
5959
}
6060

6161
private processIncomingData(data: any) {
62-
// For some reason, our TypeScript refs are set up for clearTimeout to take NodeJS.Timer... which is weird.
6362
if (this.timeoutHandle !== undefined) {
64-
clearTimeout(<any>this.timeoutHandle);
63+
clearTimeout(this.timeoutHandle);
6564
}
6665

6766
// Parse the messages

0 commit comments

Comments
 (0)