fix mistakenly changed return type of State.setResult

This commit is contained in:
Mark Harrah 2011-11-05 09:12:58 -04:00
parent 5aa9f8b95c
commit 4a4c424d20
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ trait StateOps {
/** Sets the next command processing action to do.*/
def setNext(n: State.Next): State
@deprecated("Use setNext", "0.11.0") def setResult(ro: Option[xsbti.MainResult])
@deprecated("Use setNext", "0.11.0") def setResult(ro: Option[xsbti.MainResult]): State
/** Restarts sbt without dropping loaded Scala classes. It is a shallower restart than `reboot`.*/
def reload: State