Changes between Version 33 and Version 34 of GoodCodeExamples


Ignore:
Timestamp:
09/11/09 14:56:36 (16 years ago)
Author:
meddle
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GoodCodeExamples

    v33 v34  
    340340  * Comment all the hard to understand algorithmic structure you write. 
    341341  * Delete all the auto-generated Eclipse TODO comments. 
     342 * Comparing objects: 
     343  * Don't use '==' when comparing equal immutables that are not the same in the memory. 
     344  * Compare with 'equals' objects in way where the object, calling the 'equals' method is known : For example CONST.equals(someVar);