Skip to content

Commit c5c0ff2

Browse files
committed
Remove supersafe plugin for code portability
1 parent a024050 commit c5c0ff2

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

macro/src/test/scala/com/github/bigwheel/thpy/MacroSpec.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class MacroSpec extends FunSpec with Matchers {
1010
// Following code has type erasue problem then this Equality is not completed.
1111
private[this] implicit val _ = new Equality[NamedParam.Typed[Int]] {
1212
override def areEqual(lhs: NamedParam.Typed[Int], rhs: Any): Boolean = rhs match {
13-
case rhs2 : NamedParam.Typed[Int] @unchecked =>
13+
case rhs2 : NamedParam.Typed[Int] =>
1414
lhs.tpe == rhs2.tpe && lhs.name == rhs2.name && lhs.value == rhs2.value
1515
case _ =>
1616
false

project/plugins.sbt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
11
logLevel := Level.Warn
2-
3-
addSbtPlugin("com.artima.supersafe" % "sbtplugin" % "1.1.2")

0 commit comments

Comments
 (0)