Changes between Version 17 and Version 18 of GoodCodeExamples


Ignore:
Timestamp:
05/20/09 16:37:11 (16 years ago)
Author:
meddle
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GoodCodeExamples

    v17 v18  
    7878 * Don't leave commented code where you tried something to be reviewed, we will be not very happy. 
    7979 * Avoid writing expressions on several lines, instead use variables... but if it's needed for example in statements here are some examples : 
    80   * &&, || must be first on the new line. 
     80  * Write &&, || to be first on the new line. 
    8181{{{ 
    8282                                a == b 
     
    8585                                && !flag 
    8686}}} 
     87  * If you Ctrl+Shift+F, please refactor your code not to have something like: 
     88{{{ 
     89                                res 
     90                                                .setDefaultCloseOperation(WindowConstants.DO_NOTHING_ON_CLOSE); 
     91}}}