From 1394e646b77cd712f87ff14b0359271f22864686 Mon Sep 17 00:00:00 2001 From: Alexander Udalov Date: Fri, 11 Sep 2015 15:12:04 +0300 Subject: [PATCH] Minor, fix deprecation message --- core/builtins/src/kotlin/reflect/_Deprecated.kt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/builtins/src/kotlin/reflect/_Deprecated.kt b/core/builtins/src/kotlin/reflect/_Deprecated.kt index ef5ea9b0d75..52afa46fb95 100644 --- a/core/builtins/src/kotlin/reflect/_Deprecated.kt +++ b/core/builtins/src/kotlin/reflect/_Deprecated.kt @@ -16,14 +16,14 @@ package kotlin.reflect -@Deprecated("This class will be dropped in M13 because it was a part of an overly complex API. Use KFunction instead") +@Deprecated("This class will be dropped after M13 because it was a part of an overly complex API. Use KFunction instead") public interface KTopLevelFunction : KFunction -@Deprecated("This class will be dropped in M13 because it was a part of an overly complex API. Use KFunction instead") +@Deprecated("This class will be dropped after M13 because it was a part of an overly complex API. Use KFunction instead") public interface KTopLevelExtensionFunction -@Deprecated("This class will be dropped in M13 because it was a part of an overly complex API. Use KFunction instead") +@Deprecated("This class will be dropped after M13 because it was a part of an overly complex API. Use KFunction instead") public interface KMemberFunction : KFunction -@Deprecated("This class will be dropped in M13 because it was a part of an overly complex API. Use KFunction instead") +@Deprecated("This class will be dropped after M13 because it was a part of an overly complex API. Use KFunction instead") public interface KLocalFunction : KFunction