You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by Apache Wiki <wi...@apache.org> on 2007/03/16 03:58:27 UTC

[Myfaces Wiki] Trivial Update of "coding" by SimonLessard

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Myfaces Wiki" for change notification.

The following page has been changed by SimonLessard:
http://wiki.apache.org/myfaces/coding

The comment on the change is:
Added a rule about using assert as a poor man's #ifdef __DEBUG of C

------------------------------------------------------------------------------
  
   * Braces are always on new lines
  
+  * Using assert as #ifdef DEBUG (boolean debugEnaled = false; assert debugEnabled = true; if(debugEnabled)//do something) is forbidden.
+