summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/compiler/scala/tools/nsc/matching/ParallelMatching.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/matching/ParallelMatching.scala b/src/compiler/scala/tools/nsc/matching/ParallelMatching.scala
index 0f760aa372..d89f84f0e4 100644
--- a/src/compiler/scala/tools/nsc/matching/ParallelMatching.scala
+++ b/src/compiler/scala/tools/nsc/matching/ParallelMatching.scala
@@ -248,7 +248,7 @@ trait ParallelMatching {
}
def haveDefault: Boolean = !defaultIndexSet.isEmpty
- lazy val defaultRows: List[Row] = defaultIndexSet.toList reverseMap grabRow
+ def defaultRows: List[Row] = defaultIndexSet.toList reverseMap grabRow
protected var tagIndices = IntMap.empty[List[Int]]
protected def grabRow(index: Int): Row = {