Clarify dev contributing guide code organization section
Change-Id: If3df8df7c9cc410b74d149f054a4c5e1b0dbd8d8
This commit is contained in:
committed by
David Pursehouse
parent
9305d468a9
commit
8fc133ed47
@@ -211,10 +211,10 @@ Here are some guidelines that Gerrit uses:
|
||||
* Define any static interfaces next in your class.
|
||||
* Define non static interfaces after static interfaces in your
|
||||
class.
|
||||
* Next you should define static types, members, and methods, in
|
||||
decreasing order of visibility (public to private).
|
||||
* Finally instance members, then constructors, and then instance
|
||||
methods.
|
||||
* Next you should define static types, static members, and
|
||||
static methods, in decreasing order of visibility (public to private).
|
||||
* Finally instance types, instance members, then constructors,
|
||||
and then instance methods.
|
||||
* Some common exceptions are private helper static methods, which
|
||||
might appear near the instance methods which they help (but may
|
||||
also appear at the top).
|
||||
|
||||
Reference in New Issue
Block a user