Skip to content

Commit

Permalink
Merge pull request #667 from smarter/restore-abi
Browse files Browse the repository at this point in the history
Restore binary compatibility with 1.14.0
  • Loading branch information
non authored Jul 7, 2020
2 parents a9a7363 + 79a50b4 commit 80f2f48
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion project/MimaSettings.scala
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ object MimaSettings {
)

private def removedPrivateMethods = Seq(
"org.scalacheck.Prop.BooleanOperators"
)

private def removedPrivateClasses = Seq(
Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/org/scalacheck/Prop.scala
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ object Prop {
* values available in the current scope. See [[Prop.ExtendedBoolean]] for
* documentation on the operators. */
@deprecated("Please import Prop.propBoolean instead", since="1.14.1")
implicit private[this] def BooleanOperators(b: => Boolean): ExtendedBoolean = new ExtendedBoolean(b)
def BooleanOperators(b: => Boolean): ExtendedBoolean = new ExtendedBoolean(b)

/** Implicit conversion of Boolean values to Prop values. */
implicit def propBoolean(b: Boolean): Prop = Prop(b)
Expand Down

0 comments on commit 80f2f48

Please sign in to comment.