mirror of https://github.com/sbt/sbt.git
Add missing match case
There was an incomplete pattern match that assumed that the jars in the scala provider included one with the name "scala-library.jar". In practice, I think this is always true, but it's safer to have a fallback case and it also removes the compiler warning.
This commit is contained in:
parent
bf03d24f6d
commit
27fc4e57e3
|
|
@ -365,6 +365,7 @@ object State {
|
|||
case _ =>
|
||||
}
|
||||
}
|
||||
case _ =>
|
||||
}
|
||||
}
|
||||
s.put(BasicKeys.extendedClassLoaderCache, cache)
|
||||
|
|
|
|||
Loading…
Reference in New Issue