remove comment that no longer applies

This commit is contained in:
Mark Harrah 2010-09-12 22:44:33 -04:00
parent fce5330464
commit 129f1e152d
1 changed files with 1 additions and 1 deletions

View File

@ -232,7 +232,7 @@ object Commands
} catch { case e: xsbti.CompileFailed => s.fail /* already logged */ }
}
def load = Command.simple(Load, Parse.helpBrief(Load, LoadLabel), Parse.helpDetail(Load, LoadLabel, false) ) { (in, s) =>
loadCommand(in.arguments, s.configuration, false, "sbt.Project") match // TODO: classOf[Project].getName when ready
loadCommand(in.arguments, s.configuration, false, "sbt.Project") match
{
case Right(Seq(newValue)) => runExitHooks(s).copy(project = newValue)()
case Left(e) => handleException(e, s, false)