-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Avoid cross compiling different yaml loading logic
Instead, create a shim for standard convert utilities.
- Loading branch information
1 parent
192fed2
commit b0405bb
Showing
6 changed files
with
24 additions
and
49 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 org.uaparser | ||
|
||
package object scala { | ||
object jdk { | ||
val CollectionConverters = _root_.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package org.uaparser | ||
|
||
package object scala { | ||
object jdk { | ||
val CollectionConverters = _root_.scala.jdk.CollectionConverters | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
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 org.uaparser | ||
|
||
package object scala { | ||
object jdk { | ||
val CollectionConverters = _root_.scala.jdk.CollectionConverters | ||
} | ||
} |
6 changes: 3 additions & 3 deletions
6
...la-2.13/org/uaparser/scala/YamlUtil.scala → ...n/scala/org/uaparser/scala/YamlUtil.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