-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Handle javaconverters deprecation difference between 2.12 and 13
- Loading branch information
1 parent
e6a08fa
commit 4e97a0d
Showing
5 changed files
with
23 additions
and
2 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
6 changes: 6 additions & 0 deletions
6
src/main/scala-2.13+/main/scala/io.circe.config/compat/package.scala
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,6 @@ | ||
package io.circe.config | ||
|
||
// Probably not needed after https://github.com/scala/scala-collection-compat/pull/217 | ||
package object compat { | ||
val converters = scala.jdk.CollectionConverters | ||
} |
7 changes: 7 additions & 0 deletions
7
src/main/scala-2.13-/main/scala/io.circe.config/compat/package.scala
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,7 @@ | ||
package io.circe.config | ||
|
||
|
||
// Probably not needed after https://github.com/scala/scala-collection-compat/pull/217 | ||
package object compat { | ||
val converters = scala.collection.JavaConverters | ||
} |
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