Skip to content

Commit 2311631

Browse files
author
James Santucci
committed
remove commented tail of deps
1 parent 7c1e48e commit 2311631

File tree

1 file changed

+1
-1
lines changed
  • compiler/src/main/scala/org/scalaexercises/exercises/compiler

1 file changed

+1
-1
lines changed

compiler/src/main/scala/org/scalaexercises/exercises/compiler/Compiler.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ case class Compiler() {
290290
val libraryAsDependency =
291291
s"${buildMetaInfo.organization}:${buildMetaInfo.name}_${buildMetaInfo.scalaVersion
292292
.substring(0, 4)}:${buildMetaInfo.version}"
293-
List(libraryAsDependency) // :: buildMetaInfo.libraryDependencies.toList
293+
libraryAsDependency :: buildMetaInfo.libraryDependencies.toList
294294
// Evaluator can resolve transitive dependencies, the reason of only passing the library as a dependency
295295
}
296296

0 commit comments

Comments
 (0)