Do not annotate private members and their parameters (to save space)
This commit is contained in:
@@ -27,4 +27,8 @@ val nullableValWithGet: String?
|
||||
|
||||
var nullableVarWithGetSet: String?
|
||||
[NotNull] get() = ""
|
||||
[NotNull] set(v) {}
|
||||
[NotNull] set(v) {}
|
||||
|
||||
private val privateNn: String = ""
|
||||
private val privateN: String? = ""
|
||||
private fun privateFun(a: String, b: String?): String? = null
|
||||
Reference in New Issue
Block a user