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:
Ethan Atkins 2019-06-10 15:40:05 -07:00
parent bf03d24f6d
commit 27fc4e57e3
1 changed files with 1 additions and 0 deletions

View File

@ -365,6 +365,7 @@ object State {
case _ =>
}
}
case _ =>
}
}
s.put(BasicKeys.extendedClassLoaderCache, cache)