Minor. Rename KotlinLibrary.readSafe() -> KotlinLibrary.safeRead()

This commit is contained in:
Dmitriy Dolovov
2020-03-31 19:09:29 +07:00
parent b199403c57
commit 132464fa4f
3 changed files with 4 additions and 4 deletions
@@ -163,7 +163,7 @@ class NativeKlibLibraryInfo(project: Project, library: Library, libraryRoot: Str
get() {
val capabilities = super.capabilities.toMutableMap()
capabilities += KlibModuleOrigin.CAPABILITY to DeserializedKlibModuleOrigin(resolvedKotlinLibrary)
capabilities += ImplicitIntegerCoercion.MODULE_CAPABILITY to resolvedKotlinLibrary.readSafe(false) { isInterop }
capabilities += ImplicitIntegerCoercion.MODULE_CAPABILITY to resolvedKotlinLibrary.safeRead(false) { isInterop }
return capabilities
}