File tree 1 file changed +2
-2
lines changed
src/main/scala/org/biodatageeks/sequila/utils 1 file changed +2
-2
lines changed 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