Skip to content

Commit

Permalink
Fix sonar issue
Browse files Browse the repository at this point in the history
Signed-off-by: BOUHOURS Antoine <[email protected]>
  • Loading branch information
antoinebhs committed Dec 14, 2023
1 parent aea00c6 commit 6a9cce0
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,14 @@ public ByFilterDeletionInfos toModificationInfos() {
.collect(Collectors.toList()))
.equipmentType(getEquipmentType()).build();
}

@Override
public boolean equals(Object o) {
return super.equals(o);
}

@Override
public int hashCode() {
return super.hashCode();
}
}

0 comments on commit 6a9cce0

Please sign in to comment.