[FIR] Add path normalization to LibraryPathFilter

This commit is contained in:
Dmitriy Novozhilov
2021-05-12 14:40:42 +03:00
committed by TeamCityServer
parent cf5af0f7ea
commit 43b075d452
2 changed files with 4 additions and 2 deletions
@@ -169,6 +169,6 @@ class KotlinDeserializedJvmSymbolsProvider(
}
private fun String?.toPath(): Path? {
return this?.let { Paths.get(it) }
return this?.let { Paths.get(it).normalize() }
}
}