make javabean getters/setter not visible as properties temporarily

fixes KT-1432
This commit is contained in:
Stepan Koltsov
2012-03-02 18:05:10 +04:00
parent 5882c10368
commit 7b574e8b49
8 changed files with 5 additions and 17 deletions

View File

@@ -2,5 +2,5 @@ package test
open class JavaBeanVal() {
open fun getColor(): String? = ""
val color: String? = ""
//val color: String? = ""
}