Do not annotate private members and their parameters (to save space)

This commit is contained in:
Andrey Breslav
2013-11-11 14:02:32 +04:00
parent 0959f7e37c
commit 1f574a9feb
9 changed files with 70 additions and 4 deletions
@@ -0,0 +1,5 @@
class PrivateInClass private (s: String?) {
private val nn: String = ""
private val n: String? = ""
private fun bar(a: String, b: String?): String? = null
}