Author: vsiveton
Date: Sat Jul 5 06:11:57 2008
New Revision: 674193
URL: http://svn.apache.org/viewvc?rev=674193&view=rev
Log:
o fixed java indentation
Modified:
maven/site/trunk/src/site/apt/developers/conventions/code.apt
Modified: maven/site/trunk/src/site/apt/developers/conventions/code.apt
URL:
http://svn.apache.org/viewvc/maven/site/trunk/src/site/apt/developers/conventions/code.apt?rev=674193&r1=674192&r2=674193&view=diff
==============================================================================
--- maven/site/trunk/src/site/apt/developers/conventions/code.apt (original)
+++ maven/site/trunk/src/site/apt/developers/conventions/code.apt Sat Jul 5
06:11:57 2008
@@ -3,7 +3,7 @@
------
Vincent Siveton
------
- 2008-07-03
+ 2008-07-05
------
~~ Licensed to the Apache Software Foundation (ASF) under one
@@ -52,6 +52,8 @@
[]
+ <<Note>>: The specific styles and conventions, listed in the next sections,
could override these generic rules.
+
* {Java}
** {Java Code Style}
@@ -62,6 +64,8 @@
<<<if(foo)>>>), <<<myFunc( foo, bar, baz )>>> instead of
<<<myFunc(foo,bar,baz)>>>).
No spaces after methods names (i.e. <<<void myMethod(), myMethod( "foo"
)>>>)
+ * <<Indentation>>: Always use 4 space indents and <<never>> use tabs!
+
* <<Blocks>>: Always enclose with a new line brace.
* <<Readingness>>: Specify code grouping members, if needed. For instance in
a Mojo class, you could have: