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 JonathanEllis: http://wiki.apache.org/cassandra/CodeStyle ------------------------------------------------------------------------------ == Multiline statements == * Try to keep lines under 120 characters, but use good judgement -- it's better to exceed 120 by a little, than split a line that has no natural splitting points. - * When splitting inside a method call, use one line per parameter. + * When splitting inside a method call, use one line per parameter and align them, like this: + + {{{ + SSTableWriter writer = new SSTableWriter(cfStore.getTempSSTablePath(), + columnFamilies_.size(), + StorageService.getPartitioner()); + }}} == Private_ _Members and Underscores ==
