Dear Wiki user, You have subscribed to a wiki page or wiki category on "Httpcomponents Wiki" for change notification.
The "CodingConventions" page has been changed by TonyPoppleton. http://wiki.apache.org/HttpComponents/CodingConventions?action=diff&rev1=5&rev2=6 -------------------------------------------------- * (TODO the following rule is not adhered to anywhere, but I would recommend it rather than using the this. prefix) All instance fields should start with the m prefix (this is also setup in the standard preferences). Don't use m prefix on local variables. * All static final fields should be capitalized, static non-final fields should have an s prefix * Make fields final when possible - * Don't use public or protected fields + * Don't use public or protected fields (unless they are immutable/final) * All fields in an enum should be final (i.e. all enum instances should be immutable) }}} --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
