Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Optimized BigInt implementation #9628

Merged
merged 7 commits into from May 13, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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