From 6fde5968a302b360d861487a1f749def504e91f3 Mon Sep 17 00:00:00 2001 From: nielsen Date: Mon, 9 Feb 2009 10:42:40 +0000 Subject: Remove type annotations as part of SIP 00002 an... Remove type annotations as part of SIP 00002 and removed function from Global that is not used any more --- .../plugintemplate/src/plugintemplate/standalone/PluginRunner.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/examples/plugintemplate') diff --git a/docs/examples/plugintemplate/src/plugintemplate/standalone/PluginRunner.scala b/docs/examples/plugintemplate/src/plugintemplate/standalone/PluginRunner.scala index 979437c8c2..3068f47635 100644 --- a/docs/examples/plugintemplate/src/plugintemplate/standalone/PluginRunner.scala +++ b/docs/examples/plugintemplate/src/plugintemplate/standalone/PluginRunner.scala @@ -21,8 +21,8 @@ extends Global(settings, reporter) { */ override protected def computeInternalPhases() : Unit = { phasesSet += syntaxAnalyzer - phasesSet += (analyzer.namerFactory: SubComponent) // note: types are there because otherwise - phasesSet += (analyzer.typerFactory: SubComponent) // consistency check after refchecks would fail. + phasesSet += analyzer.namerFactory: SubComponent + phasesSet += analyzer.typerFactory: SubComponent phasesSet += superAccessors // add super accessors phasesSet += pickler // serialize symbol tables phasesSet += refchecks // perform reference and override checking, translate nested objects -- cgit v1.2.3