I have this type: `List<@NotBlank String>`. ...
# announcements
d
I have this type:
List<@NotBlank String>
. Is there a way to get the Kotlin compiler to properly generate type annotation metadata in a situation like this? Right now the
@NotBlank
annotation is not visible with the Java reflection API, even with
javaParameters
option set to
true
.
g
What is signature of @NotBlank? Are you sure that this isn't source only annotation?
d
Yes, I am sure. In fact I found out I and some other people already reported this issue quite a while ago: https://youtrack.jetbrains.com/issue/KT-13228