Skip to content

Commit

Permalink
Update plugin-nabu/src/main/java/ca/on/oicr/gsi/shesmu/nabu/ArchiveCa…
Browse files Browse the repository at this point in the history
…seAction.java

Co-authored-by: avarsava <17747491+avarsava@users.noreply.github.com>
  • Loading branch information
grapigeau and avarsava authored Sep 10, 2024
1 parent 6833cf5 commit 0ce0af5
Showing 1 changed file with 1 addition and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -124,13 +124,7 @@ public void generateUUID(Consumer<byte[]> digest) {

@Override
public int hashCode() {
final var prime = 31;
var result = 1;
result = prime * result + (owner == null ? 0 : owner.hashCode());
result = prime * result + (caseId == null ? 0 : caseId.hashCode());
result = prime * result + (limsIds == null ? 0 : limsIds.hashCode());
result = prime * result + Long.hashCode(requisitionId);
return result;
return Objects.hash(owner, caseId, limsIds, requisitionId);
}

private String createRequestBody() {
Expand Down

0 comments on commit 0ce0af5

Please sign in to comment.