davicdsalves
12/27/2016, 9:27 PMclass Payment(val cycleId: Long) : CicloEvent {
override fun getCycleId(): Long {
return cycleId
}
}
interface CicloEvent : Event {
fun getCycleId() : Long
}
I'm getting the error, platform declaration clash, same jvm signature for both methods