Clarify dev contributing guide code organization section

Change-Id: If3df8df7c9cc410b74d149f054a4c5e1b0dbd8d8
This commit is contained in:
Zac Livingston
2016-07-20 12:32:52 -07:00
committed by David Pursehouse
parent 9305d468a9
commit 8fc133ed47

View File

@@ -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).