Private visibility for non-const, non-jvmField class companion property backing field

This commit is contained in:
Michael Bogdanov
2015-12-25 15:05:31 +03:00
parent 85ae0cb78e
commit e116cc3206
76 changed files with 299 additions and 157 deletions
@@ -8,12 +8,12 @@ import kotlinx.android.synthetic.main.layout.*
class R {
class id {
companion object {
val item_detail_container = 0
val textView1 = 1
val password = 2
val textView2 = 3
val passwordConfirmation = 4
val login = 5
const val item_detail_container = 0
const val textView1 = 1
const val password = 2
const val textView2 = 3
const val passwordConfirmation = 4
const val login = 5
}
}
}
@@ -8,12 +8,12 @@ import kotlinx.android.synthetic.main.layout.*
class R {
class id {
companion object {
val item_detail_container = 0
val textView1 = 1
val password = 2
val textView2 = 3
val passwordConfirmation = 4
val login = 5
const val item_detail_container = 0
const val textView1 = 1
const val password = 2
const val textView2 = 3
const val passwordConfirmation = 4
const val login = 5
}
}
}