aboutsummaryrefslogtreecommitdiff
path: root/library/src/dotty/runtime/LegacyApp.scala
diff options
context:
space:
mode:
Diffstat (limited to 'library/src/dotty/runtime/LegacyApp.scala')
-rw-r--r--library/src/dotty/runtime/LegacyApp.scala7
1 files changed, 3 insertions, 4 deletions
diff --git a/library/src/dotty/runtime/LegacyApp.scala b/library/src/dotty/runtime/LegacyApp.scala
index 2c4b295d0..1eae4c2be 100644
--- a/library/src/dotty/runtime/LegacyApp.scala
+++ b/library/src/dotty/runtime/LegacyApp.scala
@@ -1,9 +1,8 @@
package dotty.runtime
-
-/**
- * replaces the `scala.App` class which relies on `DelayedInit` functionality, not supported by Dotty.
- */
+/** Replaces the `scala.App` class which relies on `DelayedInit` functionality,
+ * not supported by Dotty.
+ */
class LegacyApp {
def main(args: Array[String]): Unit = ()
}