is it normal that if I want to implement the follo...
# announcements
e
is it normal that if I want to implement the following gradle interface
Copy code
public interface ArtifactRepository {
    String getName();
    void setName(String name);
I cant use a
override var name: String
, but I'm forced to
Copy code
class GithubArtifactRepository : ArtifactRepository {
    private var n = "github"
    override fun getName(): String = n
    override fun setName(name: String) { n = name }
e
shit, I totatlly forgot that, I even voted it a long time ago 🙂 thanks!