From b5763e311fe8c3ea4a41334e6f9709b6e8fc0ccc Mon Sep 17 00:00:00 2001 From: Alexander Udalov Date: Mon, 20 Jul 2015 21:13:16 +0300 Subject: [PATCH] Minor, unworkaround the fixed issue --- .../src/org/jetbrains/kotlin/js/PredefinedAnnotation.kt | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/js/js.frontend/src/org/jetbrains/kotlin/js/PredefinedAnnotation.kt b/js/js.frontend/src/org/jetbrains/kotlin/js/PredefinedAnnotation.kt index c7a3ae65c42..783603172d6 100644 --- a/js/js.frontend/src/org/jetbrains/kotlin/js/PredefinedAnnotation.kt +++ b/js/js.frontend/src/org/jetbrains/kotlin/js/PredefinedAnnotation.kt @@ -16,7 +16,6 @@ package org.jetbrains.kotlin.js -import kotlin.properties.Delegates import org.jetbrains.kotlin.name.FqName public enum class PredefinedAnnotation(fqName: String) { @@ -29,7 +28,6 @@ public enum class PredefinedAnnotation(fqName: String) { public val fqName: FqName = FqName(fqName) companion object { - // TODO: replace with straight assignment when KT-5761 will be fixed - val WITH_CUSTOM_NAME by lazy { setOf(LIBRARY, NATIVE) } + val WITH_CUSTOM_NAME = setOf(LIBRARY, NATIVE) } }