Clears the open timeout.
()
| 465 | |
| 466 | /** Clears the open timeout. */ |
| 467 | _clearOpenTimeout() { |
| 468 | if (this._openTimeout) { |
| 469 | clearTimeout(this._openTimeout); |
| 470 | this._openTimeout = undefined; |
| 471 | } |
| 472 | } |
| 473 | |
| 474 | /** Clears the close timeout. */ |
| 475 | _clearCloseTimeout() { |
no outgoing calls
no test coverage detected