summaryrefslogtreecommitdiff
path: root/ext/net/02_tls.js
diff options
context:
space:
mode:
authorAsher Gomez <ashersaupingomez@gmail.com>2024-09-07 09:01:36 +1000
committerGitHub <noreply@github.com>2024-09-06 23:01:36 +0000
commita9ed06b8324d4b139aea516d045bdbd091f15be9 (patch)
treef6bf30f56ed898cff310c34c7cf70a50651de622 /ext/net/02_tls.js
parent5bac4075c38c34ba53ce86e8ce6912d3be38c4bb (diff)
BREAKING(net): remove `Deno.{Conn,TlsConn,TcpConn,UnixConn}.prototype.rid` (#25446)
Towards #22079 --------- Signed-off-by: Asher Gomez <ashersaupingomez@gmail.com>
Diffstat (limited to 'ext/net/02_tls.js')
-rw-r--r--ext/net/02_tls.js9
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);
}