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