File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
runtime/src/main/scala/org/scalaexercises/exercises Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 11ThisBuild / organization := " org.scala-exercises"
22ThisBuild / githubOrganization := " 47degrees"
3- ThisBuild / scalaVersion := V .scala
3+ ThisBuild / scalaVersion := " 2.13.3"
4+ ThisBuild / crossScalaVersions := Seq (" 2.13.3" , " 2.12.11" )
45
56publish / skip := true
67
7- addCommandAlias(" ci-test" , " scalafmtCheckAll; scalafmtSbtCheck; test" )
8+ addCommandAlias(" ci-test" , " scalafmtCheckAll; scalafmtSbtCheck; + test" )
89addCommandAlias(" ci-docs" , " github; mdoc; headerCreateAll" )
910addCommandAlias(" ci-publish" , " github; ci-release" )
1011
@@ -13,7 +14,6 @@ lazy val V = new {
1314 val circe : String = " 0.13.0"
1415 val classutil : String = " 1.5.1"
1516 val http4s : String = " 0.21.6"
16- val scala : String = " 2.13.2"
1717 val scalatest : String = " 3.2.0"
1818}
1919
Original file line number Diff line number Diff line change @@ -38,7 +38,8 @@ object Exercises {
3838 .getURLs
3939 .map(url => new File (url.getFile)) filter (_.exists)).toSeq
4040 val classFinder = ClassFinder (files, Some (Opcodes .ASM7 ))
41- val classes = classFinder.getClasses
41+ val classes = classFinder
42+ .getClasses()
4243 .filter(Try (_).isSuccess)
4344 .toList
4445 ClassFinder .classInfoMap(classes.iterator)
You can’t perform that action at this time.
0 commit comments