sbt / sbt-remote-control

Create and manage sbt process using unicorns and forks
Other
74 stars 14 forks source link

Add type aliases to SPickler and Unpickler #245

Closed eed3si9n closed 9 years ago

eed3si9n commented 9 years ago

The primary change is

 package object serialization {
+  type SPickler[A] = scala.pickling.SPickler[A]
+  val SPickler = scala.pickling.SPickler
+  type Unpickler[A] = scala.pickling.Unpickler[A]
+  val Unpickler = scala.pickling.Unpickler