Dear Wiki user, You have subscribed to a wiki page or wiki category on "Cassandra Wiki" for change notification.
The "CodeStyle" page has been changed by JonathanEllis. http://wiki.apache.org/cassandra/CodeStyle?action=diff&rev1=10&rev2=11 -------------------------------------------------- * Prefer public final fields to private fields with getters. (But prefer encapsulating behavior in "real" methods to either.) * Prefer requiring initialization in the constructor to setters. * avoid redundant "this" references to member fields or methods + * Do not extract interfaces (or abstract classes) unless you actually need multiple implementations of it == Multiline statements ==