Nullability bug fix in the source code
This commit is contained in:
@@ -61,7 +61,7 @@ public abstract class AbstractKotlinExceptionFilterTest: KotlinCodeInsightTestCa
|
||||
MOCK_LIBRARY_JAR = MockLibraryUtil.compileLibraryToJar(MOCK_LIBRARY_SOURCES, "mockLibrary", true)
|
||||
}
|
||||
|
||||
val mockLibraryJar = MOCK_LIBRARY_JAR
|
||||
val mockLibraryJar = MOCK_LIBRARY_JAR ?: throw AssertionError("Mock library JAR is null")
|
||||
val mockLibraryPath = FileUtilRt.toSystemIndependentName(mockLibraryJar.canonicalPath)
|
||||
val libRootUrl = "jar://$mockLibraryPath!/"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user