Skip to content

Commit

Permalink
Merge branch 'feature/508848-MostrarPreciosCombustibles' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexEscudo committed Nov 20, 2024
2 parents f31ad37 + eeb6ec6 commit 056a5e2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,10 @@ public boolean equals(Object o) {
return Double.compare(that.precio, precio) == 0 &&
Objects.equals(combustible, that.combustible);
}

@Override
public int hashCode() {
return Objects.hash(combustible, precio);
}

}
Binary file not shown.

0 comments on commit 056a5e2

Please sign in to comment.