mirror of
https://github.com/Suwayomi/Tachidesk.git
synced 2025-12-10 14:52:05 +01:00
fix ambiguous reference issue on JDK 13+
This commit is contained in:
@@ -42,7 +42,7 @@ object Chromium {
|
|||||||
if (chromePath.exists() || chromiumZip.notExists()) return
|
if (chromePath.exists() || chromiumZip.notExists()) return
|
||||||
chromePath.createDirectories()
|
chromePath.createDirectories()
|
||||||
|
|
||||||
FileSystems.newFileSystem(chromiumZip, null).use {
|
FileSystems.newFileSystem(chromiumZip, null as ClassLoader?).use {
|
||||||
val src = it.getPath("/")
|
val src = it.getPath("/")
|
||||||
Files.walk(src)
|
Files.walk(src)
|
||||||
.asSequence()
|
.asSequence()
|
||||||
|
|||||||
Reference in New Issue
Block a user