summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2010-02-25 20:50:43 +0000
committerPaul Phillips <paulp@improving.org>2010-02-25 20:50:43 +0000
commit6e768fe8c5e14b5e1b4540eb8b944e5bb0ae9651 (patch)
treebfa38c26d899d7614cb49e2894584cb22969bb34 /src
parentae71711ffdda619e393bf9f7b9f6581bb81c1fd4 (diff)
downloadscala-6e768fe8c5e14b5e1b4540eb8b944e5bb0ae9651.tar.gz
scala-6e768fe8c5e14b5e1b4540eb8b944e5bb0ae9651.tar.bz2
scala-6e768fe8c5e14b5e1b4540eb8b944e5bb0ae9651.zip
What appears to be a workaround for #3082, whic...
What appears to be a workaround for #3082, which I am hitting literally 20 times a day. Will detail in ticket. Review by odersky.
Diffstat (limited to 'src')
-rw-r--r--src/compiler/scala/tools/nsc/backend/jvm/GenJVM.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/backend/jvm/GenJVM.scala b/src/compiler/scala/tools/nsc/backend/jvm/GenJVM.scala
index 6fae6d4e3a..16f87bd024 100644
--- a/src/compiler/scala/tools/nsc/backend/jvm/GenJVM.scala
+++ b/src/compiler/scala/tools/nsc/backend/jvm/GenJVM.scala
@@ -33,7 +33,7 @@ abstract class GenJVM extends SubComponent {
val phaseName = "jvm"
/** Create a new phase */
- override def newPhase(p: Phase) = new JvmPhase(p)
+ override def newPhase(p: Phase): Phase = new JvmPhase(p)
/** JVM code generation phase
*/