-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Scala 2.13.1 to crossScalaVersions and update the dependencies
- Loading branch information
Alex Zolotko
committed
Oct 3, 2019
1 parent
d2b4a2b
commit 27ecd21
Showing
10 changed files
with
77 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
sbt.version=1.1.6 | ||
sbt.version=1.3.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package spinoco.fs2.zk | ||
|
||
import scala.collection.JavaConverters._ | ||
|
||
private[zk] object ListConverters { | ||
def toScalaList[T](list: java.util.List[T]): List[T] = | ||
list.asScala.toList | ||
|
||
def toJavaList[T](list: List[T]): java.util.List[T] = | ||
list.asJava | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package spinoco.fs2.zk | ||
|
||
import scala.collection.JavaConverters._ | ||
|
||
private[zk] object ListConverters { | ||
def toScalaList[T](list: java.util.List[T]): List[T] = | ||
list.asScala.toList | ||
|
||
def toJavaList[T](list: List[T]): java.util.List[T] = | ||
list.asJava | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package spinoco.fs2.zk | ||
|
||
import scala.jdk.CollectionConverters._ | ||
|
||
private[zk] object ListConverters { | ||
def toScalaList[T](list: java.util.List[T]): List[T] = | ||
list.asScala.toList | ||
|
||
def toJavaList[T](list: List[T]): java.util.List[T] = | ||
list.asJava | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters