You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by Apache Wiki <wi...@apache.org> on 2007/04/16 22:29:31 UTC

[Lucene-hadoop Wiki] Trivial Update of "CodeReviewChecklist" by TomWhite

Dear Wiki user,

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

The following page has been changed by TomWhite:
http://wiki.apache.org/lucene-hadoop/CodeReviewChecklist

The comment on the change is:
Fixed typo.

------------------------------------------------------------------------------
   * configuration entries are retrieved/set via setter/getter methods
   * implementation details do NOT leak into interfaces
   * variables and arguments should be interfaces where possible
-  * if {{{equals}}} is overridden then {{{hashCode}}} is overridden (and vise versa)
+  * if {{{equals}}} is overridden then {{{hashCode}}} is overridden (and vice versa)
   * objects are checked ({{{instanceof}}}) for appropriate type before casting (use generics if possible)
   * public API changes have been publically discussed