Changes between Version 7 and Version 8 of GoodCodeExamples


Ignore:
Timestamp:
05/20/09 15:05:46 (16 years ago)
Author:
meddle
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GoodCodeExamples

    v7 v8  
    3535                } 
    3636}}} 
     37  * When writing conditions put spaces between the operands and the operators! 
     38{{{ 
     39                if (a != b) { 
     40                        System.out.println("a is not the same as b"); 
     41                } 
     42}}}