Skip to content

Commit 92f3547

Browse files
committed
Try to update MimaFilters
It seems to not like scala.caps, even though it is experimental.
1 parent 8ebfe23 commit 92f3547

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

library/src/scala/caps.scala

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@ package scala
22

33
import annotation.experimental
44

5-
@experimental
6-
object caps:
5+
@experimental object caps:
76

87
/** If argument is of type `cs T`, converts to type `box cs T`. This
98
* avoids the error that would be raised when boxing `*`.

project/MiMaFilters.scala

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@ import com.typesafe.tools.mima.core._
44
object MiMaFilters {
55
val Library: Seq[ProblemFilter] = Seq(
66
ProblemFilters.exclude[MissingClassProblem]("scala.annotation.internal.MappedAlternative"),
7+
ProblemFilters.exclude[MissingClassProblem]("scala.caps"),
78
)
89
}

0 commit comments

Comments
 (0)