I'm trying to provide a default implementation for...
# announcements
s
I'm trying to provide a default implementation for a Java interface, It contains one value, with a getter and a setter. (isCancelled() & setCancelled(boolean)) When i try to implement this in Kotlin, it does not allow me to convert this into a property, when I add another property for this, it will generate additional getters and setters
nvm. making the property private solves the problem.