From 8cdf3b3f51adff8dbeff5217505f74cfbedb55cd Mon Sep 17 00:00:00 2001 From: Jason Zaugg Date: Sun, 24 Feb 2013 23:00:47 +0100 Subject: Banish needless semicolons. --- src/compiler/scala/tools/nsc/interactive/REPL.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/compiler/scala/tools/nsc/interactive/REPL.scala') diff --git a/src/compiler/scala/tools/nsc/interactive/REPL.scala b/src/compiler/scala/tools/nsc/interactive/REPL.scala index be1c656c81..71dd0d3bbf 100644 --- a/src/compiler/scala/tools/nsc/interactive/REPL.scala +++ b/src/compiler/scala/tools/nsc/interactive/REPL.scala @@ -51,8 +51,8 @@ object REPL { } catch { case ex @ FatalError(msg) => if (true || command.settings.debug.value) // !!! - ex.printStackTrace(); - reporter.error(null, "fatal error: " + msg) + ex.printStackTrace() + reporter.error(null, "fatal error: " + msg) } } } -- cgit v1.2.3