Skip to content

Commit

Permalink
Please Mima: modified classes and methods were private
Browse files Browse the repository at this point in the history
  • Loading branch information
allanrenucci committed Sep 14, 2018
1 parent c9c90cb commit 365a116
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion project/MimaSettings.scala
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,16 @@ object MimaSettings {
)

private def removedPrivateMethods = Seq(
// lazy val cmdLineParser is now an object
"org.scalacheck.Test.cmdLineParser"
)

private def removedPrivateClasses = Seq(
"org.scalacheck.Platform$EnableReflectiveInstantiation"
"org.scalacheck.Platform$EnableReflectiveInstantiation",

// private case class Seed.apply
"org.scalacheck.rng.Seed$apply",
"org.scalacheck.rng.Seed$apply$"
)

private def otherProblems = Seq(
Expand Down

0 comments on commit 365a116

Please sign in to comment.