summaryrefslogtreecommitdiff
path: root/test/files/scalap/abstractMethod.check
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/scalap/abstractMethod.check')
-rw-r--r--test/files/scalap/abstractMethod.check6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/files/scalap/abstractMethod.check b/test/files/scalap/abstractMethod.check
index 40fa02d408..0d0b1b7421 100644
--- a/test/files/scalap/abstractMethod.check
+++ b/test/files/scalap/abstractMethod.check
@@ -1,5 +1,5 @@
trait AbstractMethod extends scala.AnyRef {
- def $init$() : scala.Unit = { /* compiled code */ }
- def arity : scala.Int
- def isCool : scala.Boolean = { /* compiled code */ }
+ def $init$(): scala.Unit = { /* compiled code */ }
+ def arity: scala.Int
+ def isCool: scala.Boolean = { /* compiled code */ }
}