You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Shouldn't MustBeDocumented annotations be displayed for the classes?
The example below shows annotations for methods and parameters, but not for the class (this is kinda unexpected)
@MustBeDocumented
annotation class Baz
@Baz
class App2 {
@Baz
fun withParams(@Baz str1: String, str2: String): Boolean {
return str1 == str2
}
}