We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2632152 commit 4065ce9Copy full SHA for 4065ce9
core/src/main/kotlin/com/tschuchort/compiletesting/AbstractKotlinCompilation.kt
@@ -262,7 +262,7 @@ abstract class AbstractKotlinCompilation<A : CommonCompilerArguments> internal c
262
.mapNotNull { url ->
263
val uri = URI.create(url.toString().removeSuffix("/$resourceName"))
264
when (uri.scheme) {
265
- "jar" -> Paths.get(URI.create(encodePath(uri.schemeSpecificPart.removeSuffix("!"))))
+ "jar" -> Paths.get(URI.create(uri.rawSchemeSpecificPart.removeSuffix("!")))
266
"file" -> Paths.get(uri)
267
else -> return@mapNotNull null
268
}.toAbsolutePath()
0 commit comments