remove special case for display for 'compile' configuration

This commit is contained in:
Mark Harrah 2011-08-04 07:20:25 -04:00
parent 0737b294e3
commit 70113c88fa
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ object Scope
case BuildRef(uri) => BuildRef(resolveBuild(current, uri))
}
def display(config: ConfigKey): String = if(config.name == "compile") "" else config.name + ":"
def display(config: ConfigKey): String = config.name + ":"
def display(scope: Scope, sep: String): String =
{
import scope.{project, config, task, extra}