diff options
Diffstat (limited to 'ext/net/02_tls.js')
-rw-r--r-- | ext/net/02_tls.js | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/ext/net/02_tls.js b/ext/net/02_tls.js index 0ea5e8ca2..c06c64747 100644 --- a/ext/net/02_tls.js +++ b/ext/net/02_tls.js @@ -37,15 +37,6 @@ class TlsConn extends Conn { this.#rid = rid; } - get rid() { - internals.warnOnDeprecatedApi( - "Deno.TlsConn.rid", - new Error().stack, - "Use `Deno.TlsConn` instance methods instead.", - ); - return this.#rid; - } - handshake() { return op_tls_handshake(this.#rid); } |