Make AllLibraryJars a case object

This improves the toString and also allows it to be used in a pattern
match.
This commit is contained in:
Ethan Atkins 2019-05-30 16:24:56 -07:00
parent 63956827e0
commit cda4713f89
1 changed files with 1 additions and 1 deletions

View File

@ -96,5 +96,5 @@ object ClassLoaderLayeringStrategy {
/**
* Add a layer on top of the ScalaLibrary layer for all of the jar dependencies.
*/
object AllLibraryJars extends AllLibraryJars
case object AllLibraryJars extends AllLibraryJars
}