From 56942930c987871546ae0f35d8e41952ca8b1203 Mon Sep 17 00:00:00 2001 From: Alexey Tsvetkov Date: Mon, 25 Jan 2016 16:17:13 +0300 Subject: [PATCH] Minor: remove unreachable code --- .../load/kotlin/BinaryClassAnnotationAndConstantLoaderImpl.kt | 1 - 1 file changed, 1 deletion(-) diff --git a/core/descriptor.loader.java/src/org/jetbrains/kotlin/load/kotlin/BinaryClassAnnotationAndConstantLoaderImpl.kt b/core/descriptor.loader.java/src/org/jetbrains/kotlin/load/kotlin/BinaryClassAnnotationAndConstantLoaderImpl.kt index 325d74c0edb..4a723d7e342 100644 --- a/core/descriptor.loader.java/src/org/jetbrains/kotlin/load/kotlin/BinaryClassAnnotationAndConstantLoaderImpl.kt +++ b/core/descriptor.loader.java/src/org/jetbrains/kotlin/load/kotlin/BinaryClassAnnotationAndConstantLoaderImpl.kt @@ -77,7 +77,6 @@ class BinaryClassAnnotationAndConstantLoaderImpl( ): List { return propertyAnnotations.map { AnnotationWithTarget(it, null) } + fieldAnnotations.map { AnnotationWithTarget(it, fieldUseSiteTarget) } - fieldAnnotations.map { AnnotationWithTarget(it, fieldUseSiteTarget) } } override fun transformAnnotations(annotations: List): List {