Changes between Version 33 and Version 34 of GoodCodeExamples
- Timestamp:
- 09/11/09 14:56:36 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
GoodCodeExamples
v33 v34 340 340 * Comment all the hard to understand algorithmic structure you write. 341 341 * 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);