Skip to content

Commit

Permalink
Merge pull request #184 from scala-steward/update/sbt-1.3.6
Browse files Browse the repository at this point in the history
Update sbt to 1.3.6
  • Loading branch information
nrinaudo committed Jan 23, 2020
2 parents 949d874 + 2bd5977 commit 6867384
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion core/shared/src/main/scala/kantan/codecs/Decoder.scala
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ trait Decoder[E, D, F, T] extends Serializable {
@SuppressWarnings(Array("org.wartremover.warts.StringPlusAny"))
def unsafeDecode(e: E): D = decode(e).fold(
error => sys.error(s"Failed to decode value $e: $error"),
d => d
d => d
)

// - Composition -----------------------------------------------------------------------------------------------------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ trait CommonArbitraryInstances extends ArbitraryArities {
Arbitrary(
Gen.oneOf(
arb[Exception].map(e => scala.util.Failure(e): Try[A]),
aa.arbitrary.map(a => scala.util.Success(a): Try[A])
aa.arbitrary.map(a => scala.util.Success(a): Try[A])
)
)
}
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.3.5
sbt.version=1.3.6

0 comments on commit 6867384

Please sign in to comment.