Dear Wiki user, You have subscribed to a wiki page or wiki category on "Cassandra Wiki" for change notification.
The following page has been changed by ArinSarkissian: http://wiki.apache.org/cassandra/CodeStyle ------------------------------------------------------------------------------ * The Cassandra project follows Sun's Java coding conventions (http://java.sun.com/docs/codeconv/html/CodeConvTOC.doc.html) with an important exception: * { and } are always placed on a new line + * Please make sure to use 4 spaces instead of the tab character for all your indentation == Private_ _Members and Underscores == + * The goal is to not have an "_" character appended or prepended to private variables' names * There's currently a lot of private variables with an "_" appended to them... here's our current policy on this. * if you're working on a file with foo_ style private members then please keep using that convention. @@ -20, +22 @@ } }}} + == Whitespace == + + * Please make sure to use 4 spaces instead of the tab character for all your indentation + * Many lines in many files have a bunch of trailing whitespace... Please leave these alone for now so that reviewers don't have to pay attention to whitespace diffs. + * we go thru the entire codebase and remove all trailing whitespace pretty soon +
