Skip to content

Commit

Permalink
Revert "Add Arbitrary[Symbol]. Fixes typelevel#243."
Browse files Browse the repository at this point in the history
This reverts commit 7046a59.
  • Loading branch information
non committed Sep 4, 2016
1 parent 7046a59 commit c573291
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/main/scala/org/scalacheck/Arbitrary.scala
Original file line number Diff line number Diff line change
Expand Up @@ -146,10 +146,6 @@ private[scalacheck] sealed trait ArbitraryLowPriority {
implicit lazy val arbString: Arbitrary[String] =
Arbitrary(arbitrary[List[Char]] map (_.mkString))

/** Arbitrary instance of Symbol */
implicit lazy val arbSymbol: Arbitrary[Symbol] =
Arbitrary(arbitrary[String].map(Symbol(_)))

/** Arbitrary instance of Date */
implicit lazy val arbDate: Arbitrary[java.util.Date] =
Arbitrary(Gen.calendar.map(_.getTime))
Expand Down

0 comments on commit c573291

Please sign in to comment.