File tree 2 files changed +3
-3
lines changed
src/main/scala/org/biodatageeks/sequila/utils
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ libraryDependencies += "com.holdenkarau" %% "spark-testing-base" % "3.4.1_1.4.4"
45
45
libraryDependencies += " org.bdgenomics.adam" %% " adam-core-spark3" % " 1.0.1" excludeAll (ExclusionRule (" org.seqdoop" ))
46
46
libraryDependencies += " org.bdgenomics.adam" %% " adam-apis-spark3" % " 1.0.1" excludeAll (ExclusionRule (" org.seqdoop" ))
47
47
libraryDependencies += " org.bdgenomics.adam" %% " adam-cli-spark3" % " 1.0.1" excludeAll (ExclusionRule (" org.seqdoop" ))
48
- libraryDependencies += " org.scala-lang" % " scala-library" % scalaVersion.value
48
+ libraryDependencies += " org.scala-lang" % " scala-library" % scalaVersion.value % " provided "
49
49
libraryDependencies += " org.rogach" %% " scallop" % " 3.1.2"
50
50
libraryDependencies += " com.github.samtools" % " htsjdk" % " 2.24.1"
51
51
libraryDependencies += " ch.cern.sparkmeasure" %% " spark-measure" % " 0.17" excludeAll (ExclusionRule (" org.apache.hadoop" ))
Original file line number Diff line number Diff line change @@ -470,7 +470,7 @@ object IntMap {
470
470
*
471
471
* This builder can be reused to create multiple instances.
472
472
*/
473
- final class IntMapBuilder [V ] extends ReusableBuilder [(Int , V ), IntMap [V ]] {
473
+ final class IntMapBuilder [V ] extends ReusableMapBuilder [(Int , V ), IntMap [V ]] {
474
474
private [collection] var elems : IntMap [V ] = new IntMap [V ]
475
475
def += (entry : (Int , V )): this .type = {
476
476
elems += entry
@@ -521,7 +521,7 @@ object IntMap {
521
521
}
522
522
}
523
523
524
- trait ReusableBuilder [- Elem , + To ] extends mutable.Builder [Elem , To ] {
524
+ trait ReusableMapBuilder [- Elem , + To ] extends mutable.Builder [Elem , To ] {
525
525
/** Clears the contents of this builder.
526
526
* After execution of this method, the builder will contain no elements.
527
527
*
You can’t perform that action at this time.
0 commit comments