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
}
Cheers,
Daniel.Sun
--
View this message in context:
http://groovy.329449.n5.nabble.com/The-order-of-modifiers-and-annotations-tp5737808p5737809.html
Sent from the Groovy Dev mailing list archive at Nabble.com.
