소스 검색

Make ObjectId.hashCode final too

Since equals() is now final and does not permit being overridden,
we should do the same thing with hashCode() to prevent different
subclasses from having different hashing behaviors.  This could
lead to the same mess that we had with different equals() behaviors.

Change-Id: I35a849b6efccee5fe74cc5788a3566a1516004b7
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
tags/v0.9.1
Shawn O. Pearce 14 년 전
부모
커밋
5adcd708e4
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      org.eclipse.jgit/src/org/eclipse/jgit/lib/AnyObjectId.java

+ 1
- 1
org.eclipse.jgit/src/org/eclipse/jgit/lib/AnyObjectId.java 파일 보기

@@ -219,7 +219,7 @@ public abstract class AnyObjectId implements Comparable {
return abbr.prefixCompare(this) == 0;
}

public int hashCode() {
public final int hashCode() {
return w2;
}


Loading…
취소
저장