From aa8c90893e8f9fa2311c1ee7319d0cae70e8cd90 Mon Sep 17 00:00:00 2001 From: Michael Nedzelsky Date: Sat, 5 Sep 2015 09:06:43 +0300 Subject: [PATCH] fix tests in org.jetbrains.kotlin.idea.stubs --- .../compiledKotlin/annotations/classes/Deprecated.txt | 6 +++--- .../compiledKotlin/annotations/classes/Retention.txt | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/compiler/testData/loadJava/compiledKotlin/annotations/classes/Deprecated.txt b/compiler/testData/loadJava/compiledKotlin/annotations/classes/Deprecated.txt index 9c88d768714..577b821d99c 100644 --- a/compiler/testData/loadJava/compiledKotlin/annotations/classes/Deprecated.txt +++ b/compiler/testData/loadJava/compiledKotlin/annotations/classes/Deprecated.txt @@ -1,17 +1,17 @@ package test -kotlin.deprecated(value = "Class") public final class Class { +kotlin.Deprecated(value = "Class") public final class Class { /*primary*/ public constructor Class() kotlin.Deprecated(value = "companion object") public companion object Companion { /*primary*/ private constructor Companion() } - kotlin.deprecated(value = "Inner") public final inner class Inner { + kotlin.Deprecated(value = "Inner") public final inner class Inner { /*primary*/ public constructor Inner() } - kotlin.deprecated(value = "Nested") public final class Nested { + kotlin.Deprecated(value = "Nested") public final class Nested { /*primary*/ public constructor Nested() } } diff --git a/compiler/testData/loadJava/compiledKotlin/annotations/classes/Retention.txt b/compiler/testData/loadJava/compiledKotlin/annotations/classes/Retention.txt index f9f41a662bf..24f55338c60 100644 --- a/compiler/testData/loadJava/compiledKotlin/annotations/classes/Retention.txt +++ b/compiler/testData/loadJava/compiledKotlin/annotations/classes/Retention.txt @@ -1,5 +1,5 @@ package test -kotlin.annotation.annotation(retention = AnnotationRetention.RUNTIME) public final class Anno : kotlin.Annotation { +kotlin.annotation.Retention(value = AnnotationRetention.RUNTIME) kotlin.annotation.annotation() public final class Anno : kotlin.Annotation { /*primary*/ public constructor Anno() }