aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/core/SymDenotations.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2014-01-16 22:00:16 +0100
committerMartin Odersky <odersky@gmail.com>2014-01-16 22:00:40 +0100
commitbf59937182b66d12d01c11ff5dd27346ee4a9db4 (patch)
treeda1aa5ce95b86aa9b17cd3911ef97698c5fa5f40 /src/dotty/tools/dotc/core/SymDenotations.scala
parentd00c3f5e7925cd246fb10916f6a2d26111ac2689 (diff)
downloaddotty-bf59937182b66d12d01c11ff5dd27346ee4a9db4.tar.gz
dotty-bf59937182b66d12d01c11ff5dd27346ee4a9db4.tar.bz2
dotty-bf59937182b66d12d01c11ff5dd27346ee4a9db4.zip
Refactoring to avoid multiple overloaded traceIndent methods.
Diffstat (limited to 'src/dotty/tools/dotc/core/SymDenotations.scala')
-rw-r--r--src/dotty/tools/dotc/core/SymDenotations.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dotty/tools/dotc/core/SymDenotations.scala b/src/dotty/tools/dotc/core/SymDenotations.scala
index 8f7725fbe..4cf392f13 100644
--- a/src/dotty/tools/dotc/core/SymDenotations.scala
+++ b/src/dotty/tools/dotc/core/SymDenotations.scala
@@ -128,7 +128,7 @@ object SymDenotations {
if (myFlags is Touched) throw new CyclicReference(this)
myFlags |= Touched
- Context.theBase.initialCtx.traceIndented(completions, s"completing ${this.debugString}") {
+ Context.theBase.initialCtx.traceIndented(s"completing ${this.debugString}", completions) {
// println("completing " + debugString)
completer.complete(this)
}