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
@@ -24,13 +24,4 @@ abstract class test.ClassDoesNotOverrideMethod : java.util.Date {
open override /*1*/ fun setYear(/*0*/ p0: jet.Int): jet.Tuple0
open override /*1*/ fun toGMTString(): jet.String?
open override /*1*/ fun toLocaleString(): jet.String?
val day: jet.Int
val timezoneOffset: jet.Int
var date: jet.Int
var hours: jet.Int
var minutes: jet.Int
var month: jet.Int
var seconds: jet.Int
var time: jet.Long
var year: jet.Int
}