From 9c5e5864441e8b39ac383f778fa7df25ab4c8df8 Mon Sep 17 00:00:00 2001 From: exoego Date: Tue, 4 Aug 2020 22:09:41 +0900 Subject: [PATCH] Remove the stuff deprecated in ancient Node.js --- .../src/main/scala/io/scalajs/nodejs/process/Process.scala | 3 --- 1 file changed, 3 deletions(-) diff --git a/app/nodejs-v14/src/main/scala/io/scalajs/nodejs/process/Process.scala b/app/nodejs-v14/src/main/scala/io/scalajs/nodejs/process/Process.scala index a54a4c5c6..5245f8d41 100644 --- a/app/nodejs-v14/src/main/scala/io/scalajs/nodejs/process/Process.scala +++ b/app/nodejs-v14/src/main/scala/io/scalajs/nodejs/process/Process.scala @@ -312,9 +312,6 @@ trait Process extends IEventEmitter { */ def nextTick(callback: js.Function0[Any], args: js.Any*): Unit = js.native - @deprecated("Use process.stdin instead", "Node.js v0.3.3") - def openStdin(): ReadStream = js.native - /** * When Node.js is spawned with an IPC channel attached, it can send messages to its parent process * using process.send(). Each will be received as a 'message' event on the parent's ChildProcess object.