diff --git a/app/current/src/main/scala/io/scalajs/nodejs/console_module/Console.scala b/app/current/src/main/scala/io/scalajs/nodejs/console_module/Console.scala index 367691321..e68c7f0cd 100644 --- a/app/current/src/main/scala/io/scalajs/nodejs/console_module/Console.scala +++ b/app/current/src/main/scala/io/scalajs/nodejs/console_module/Console.scala @@ -175,15 +175,6 @@ class Console protected () extends js.Object { */ def warn(message: js.Any, optionalParams: js.Any*): Unit = js.native - /** - * This method does not display anything unless used in the inspector. - * - * The `console.markTimeline()` method is the deprecated form of [[timeStamp()]]. - * @param label - */ - @deprecated("Use timeStamp instead", "NodeJS 8.0.0") - def markTimeline(label: String = js.native): Unit = js.native - /** * This method does not display anything unless used in the inspector. * The `console.profile()` method starts a JavaScript CPU profile with an optional label until [[profileEnd()]] is called. @@ -205,20 +196,6 @@ class Console protected () extends js.Object { * The `console.timeStamp()` method adds an event with the label `'label'` to the **Timeline** panel of the inspector. */ def timeStamp(label: String = js.native): Unit = js.native - - /** - * This method does not display anything unless used in the inspector. - * The `console.timeline()` method is the deprecated form of [[time()]]. - */ - @deprecated("Use time instead", "NodeJS 8.0.0") - def timeline(label: String = js.native): Unit = js.native - - /** - * This method does not display anything unless used in the inspector. - * The `console.timelineEnd()` method is the deprecated form of [[timeEnd()]]. - */ - @deprecated("Use time instead", "NodeJS 8.0.0") - def timelineEnd(label: String = js.native): Unit = js.native } /**