Do not always generate synthetic "$annotations" as private
Since annotations are a part of the declaration, they must have the same visibility as the declaration in the bytecode. Otherwise obfuscators like Proguard might strip the "$annotations" method and no annotations would be found via Kotlin reflection #KT-15993 Fixed
This commit is contained in:
+1
-1
@@ -9,7 +9,7 @@ public annotation class Ann {
|
||||
|
||||
@kotlin.Metadata
|
||||
public final class AnnotationsOnTypeAliasesKt {
|
||||
private synthetic deprecated static @Ann method TA$annotations(): void
|
||||
public synthetic deprecated static @Ann method TA$annotations(): void
|
||||
public final static method assertHasDeclaredMethodWithAnn(@org.jetbrains.annotations.NotNull p0: java.lang.Class): void
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user