File tree 2 files changed +3
-1
lines changed
src/library/scala/collection/immutable
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -39,6 +39,8 @@ object MimaFilters extends AutoPlugin {
39
39
ProblemFilters .exclude[DirectMissingMethodProblem ](" scala.concurrent.impl.FutureConvertersImpl#P.accept" ),
40
40
ProblemFilters .exclude[IncompatibleMethTypeProblem ](" scala.concurrent.impl.FutureConvertersImpl#P.andThen" ),
41
41
42
+ // 2.13.13; it's okay because the class is private
43
+ ProblemFilters .exclude[DirectMissingMethodProblem ](" scala.collection.immutable.MapNodeRemoveAllSetNodeIterator.next"
42
44
)
43
45
44
46
override val buildSettings = Seq (
Original file line number Diff line number Diff line change @@ -2181,7 +2181,7 @@ private final class MapNodeRemoveAllSetNodeIterator[K](rootSetNode: SetNode[K])
2181
2181
curr
2182
2182
}
2183
2183
2184
- override def next () = Iterator .empty.next()
2184
+ override def next (): K = Iterator .empty.next()
2185
2185
}
2186
2186
2187
2187
/**
You can’t perform that action at this time.
0 commit comments