Skip to content

Commit

Permalink
Merge pull request #9628 from denisrosset/bigint-optimization-2
Browse files Browse the repository at this point in the history
  • Loading branch information
SethTisue committed May 13, 2021
2 parents c2021de + 7c1d9df commit 74c629e
Show file tree
Hide file tree
Showing 6 changed files with 384 additions and 65 deletions.
5 changes: 5 additions & 0 deletions project/MimaFilters.scala
Expand Up @@ -25,6 +25,11 @@ object MimaFilters extends AutoPlugin {
// don't publish the artifact built with JDK 11 anyways
ProblemFilters.exclude[DirectMissingMethodProblem]("scala.collection.convert.JavaCollectionWrappers#IteratorWrapper.asIterator"),

// for the method this(Long)Unit in class scala.math.BigInt does not have a correspondent in other versions
// this new constructor is nevertheless private, and can only be called from the BigInt class and its companion
// object
ProblemFilters.exclude[DirectMissingMethodProblem]("scala.math.BigInt.this"),

// PR: https://github.com/scala/scala/pull/9336; remove after re-STARR
ProblemFilters.exclude[MissingTypesProblem]("scala.deprecatedOverriding"),
ProblemFilters.exclude[MissingTypesProblem]("scala.deprecatedInheritance"),
Expand Down

0 comments on commit 74c629e

Please sign in to comment.