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-11 15:52:23 -07:00
parent bf03d24f6d
commit 27fc4e57e3
@@ -365,6 +365,7 @@ object State {
case _ =>
}
}
case _ =>
}
}
s.put(BasicKeys.extendedClassLoaderCache, cache)