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

@@ -4,5 +4,4 @@ open class test.JavaBeanVal : jet.Any {
final /*constructor*/ fun <init>(): test.JavaBeanVal
open fun getColor(): jet.String?
open fun setColor(/*0*/ p0: jet.String?): jet.Tuple0
var color: jet.String?
}