summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/compiler/scala/tools/nsc/interactive/CompilerControl.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/interactive/CompilerControl.scala b/src/compiler/scala/tools/nsc/interactive/CompilerControl.scala
index 77d4f5416a..5258849b8c 100644
--- a/src/compiler/scala/tools/nsc/interactive/CompilerControl.scala
+++ b/src/compiler/scala/tools/nsc/interactive/CompilerControl.scala
@@ -116,7 +116,7 @@ trait CompilerControl { self: Global =>
/** Set sync var `result` to the last fully attributed & typechecked tree produced from `source`.
* If no such tree exists yet, do a normal askType(source, false, result)
*/
- def askLastType(source: SourceFile, forceReload: Boolean, result: Response[Tree]) =
+ def askLastType(source: SourceFile, result: Response[Tree]) =
scheduler postWorkItem new WorkItem {
def apply() = self.getLastTypedTree(source, result)
override def toString = "reconcile"