"Sohn, Matthias" <matthias.sohn@xxxxxxx> wrote: > The equals(Object o) method shouldn't make any assumptions about the type of o. It should simply return false if o is not the same type as this. True. Please line wrap your commit message at ~70 columns wide. > Signed-off-by: Matthias Sohn <matthias.sohn@xxxxxxx> FWIW, your From header in the emails comes out "Sohn, Matthias" while your Signed-off-By is as above. This means that when I slam your patch through git-am I get an author name of "Sohn, Matthias", which looks damn funny. I have to remember to edit the patch after the fact to make it come out correct. Any change you can get your MUA to behave better? Or is this Exchange enforcing a nice uniform standard... *sigh* > diff --git a/org.spearce.jgit/src/org/spearce/jgit/lib/AnyObjectId.java b/org.spearce.jgit/src/org/spearce/jgit/lib/AnyObjectId.java > index 2e3a43e..0bd2288 100644 > --- a/org.spearce.jgit/src/org/spearce/jgit/lib/AnyObjectId.java > +++ b/org.spearce.jgit/src/org/spearce/jgit/lib/AnyObjectId.java > @@ -253,7 +253,11 @@ public boolean equals(final AnyObjectId other) { > } > > public boolean equals(final Object o) { > - return equals((AnyObjectId) o); > + if (o instanceof AnyObjectId) { > + return equals((AnyObjectId) o); > + } else { > + return false; > + } > } Style nit: We avoid unnecessary braces around clauses. -- Shawn. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html