Wizard: fix InvalidModuleDependencyError error message
This commit is contained in:
+1
-1
@@ -73,5 +73,5 @@ data class InvalidModuleDependencyError(val from: String, val to: String, @Nls v
|
||||
constructor(from: Module, to: Module, reason: String? = null) : this(from.name, to.name, reason)
|
||||
|
||||
override val message: String
|
||||
get() = KotlinNewProjectWizardBundle.message("error.invalid.module.dependency", from, to) + reason?.let { ": $it" }
|
||||
get() = KotlinNewProjectWizardBundle.message("error.invalid.module.dependency", from, to) + reason?.let { ": $it" }.orEmpty()
|
||||
}
|
||||
Reference in New Issue
Block a user