summaryrefslogtreecommitdiff
path: root/src/compiler
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2010-10-30 21:38:14 +0000
committerPaul Phillips <paulp@improving.org>2010-10-30 21:38:14 +0000
commit09ec5aa3f09e48e9d8944111a0c1b2a0ae86e97e (patch)
tree46473c5128082084a51a30e75e94587768cfc146 /src/compiler
parentb4d47496cb87ec2dd0c47c7d4b7a38cb9842d900 (diff)
downloadscala-09ec5aa3f09e48e9d8944111a0c1b2a0ae86e97e.tar.gz
scala-09ec5aa3f09e48e9d8944111a0c1b2a0ae86e97e.tar.bz2
scala-09ec5aa3f09e48e9d8944111a0c1b2a0ae86e97e.zip
Made an @inline marked method final because oth...
Made an @inline marked method final because otherwise it won't be inlined. No review.
Diffstat (limited to 'src/compiler')
-rw-r--r--src/compiler/scala/tools/nsc/interactive/Global.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/interactive/Global.scala b/src/compiler/scala/tools/nsc/interactive/Global.scala
index a31e3331c3..e3363eb745 100644
--- a/src/compiler/scala/tools/nsc/interactive/Global.scala
+++ b/src/compiler/scala/tools/nsc/interactive/Global.scala
@@ -28,7 +28,7 @@ self =>
val debugIDE = false
/** Print msg only when debugIDE is true. */
- @inline def debugLog(msg: => String) =
+ @inline final def debugLog(msg: => String) =
if (debugIDE) println(msg)
override def onlyPresentation = true