Browse Source

Implement RepoCommand.Project.hashCode() since we override equals()

Bug: 440757
Change-Id: I16614c75b62b2fbef05419dd8667e3c50889abe4
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
stable-3.5
Matthias Sohn 10 years ago
parent
commit
efce340474
  1. 5
      org.eclipse.jgit/src/org/eclipse/jgit/gitrepo/RepoCommand.java

5
org.eclipse.jgit/src/org/eclipse/jgit/gitrepo/RepoCommand.java

@ -297,6 +297,11 @@ public class RepoCommand extends GitCommand<RevCommit> {
return false; return false;
} }
@Override
public int hashCode() {
return this.getPathWithSlash().hashCode();
}
public int compareTo(Project that) { public int compareTo(Project that) {
return this.getPathWithSlash().compareTo(that.getPathWithSlash()); return this.getPathWithSlash().compareTo(that.getPathWithSlash());
} }

Loading…
Cancel
Save