mirror of https://github.com/sbt/sbt.git
work around for type inference change in 2.10
This commit is contained in:
parent
15b2d59c01
commit
1ffa7b7d92
|
|
@ -216,7 +216,7 @@ object Scope
|
|||
def linearize[T](axis: ScopeAxis[T], appendGlobal: Boolean = true)(inherit: T => Seq[T]): Seq[ScopeAxis[T]] =
|
||||
axis match
|
||||
{
|
||||
case Select(x) => topologicalSort(x, appendGlobal)(inherit)
|
||||
case Select(x) => topologicalSort[T](x, appendGlobal)(inherit)
|
||||
case Global | This => if(appendGlobal) Global :: Nil else Nil
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue