On 19.01.2017 08:22, Daniel Sun wrote:
Should we check the redundant modifiers? e.g.

*Current*
class A {
    private def a  // def is redundant. IMHO, I really don't like it...
}

*Suggested*
class A {
    private a
}

def is by now to be thought of as an alias for Object. In that sense it is correct to do "private def a" as it is correct to do "private Object a"

bye Jochen

Reply via email to