From 081e4a7b1213de37e0d711a7605f5eef47b8cd5a Mon Sep 17 00:00:00 2001 From: Ilya Gorbunov Date: Mon, 1 Oct 2018 16:17:37 +0300 Subject: [PATCH] Remove actuals of jvm-specific annotations because they are optional in common --- .../main/kotlin/kotlin/jvm/JvmAnnotations.kt | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 runtime/src/main/kotlin/kotlin/jvm/JvmAnnotations.kt diff --git a/runtime/src/main/kotlin/kotlin/jvm/JvmAnnotations.kt b/runtime/src/main/kotlin/kotlin/jvm/JvmAnnotations.kt deleted file mode 100644 index 187745a7dfd..00000000000 --- a/runtime/src/main/kotlin/kotlin/jvm/JvmAnnotations.kt +++ /dev/null @@ -1,19 +0,0 @@ -/* - * Copyright 2010-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license - * that can be found in the LICENSE file. - */ - -package kotlin.jvm - -// Dummy JVM specific annotations in Kotlin/Native. Used in common stdlib. - -@Target(AnnotationTarget.FUNCTION, AnnotationTarget.PROPERTY_GETTER, AnnotationTarget.PROPERTY_SETTER, AnnotationTarget.FILE) -actual annotation class JvmName(actual val name: String) - -@Target(AnnotationTarget.FILE) -actual annotation class JvmMultifileClass - -actual annotation class JvmField - -@Target(AnnotationTarget.FIELD) -actual annotation class Volatile