[ULC] Unify modifiers for RepeatableAnnotationContainer

All the other annotation classes has abstract modifier.
All nested interfaces has static modifiers.

This commit is not so important for compiler, but it is matter for IDE,
because when we load classes in IDE via
KtLightClassForDecompiledDeclaration -- there are Abstract and Static
on the Container class
This commit is contained in:
Stanislav Erokhin
2021-10-30 02:08:12 +02:00
committed by Space
parent b7a9a7d922
commit 65abc94411
4 changed files with 8 additions and 4 deletions
@@ -7,7 +7,7 @@ public abstract @interface One /* simple.One*/ {
@java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME)
@kotlin.jvm.internal.RepeatableContainer()
public @interface Container /* simple.One.Container*/ {
public static abstract @interface Container /* simple.One.Container*/ {
public abstract simple.One[] value();// value()
}}