Skip to content

Commit

Permalink
requested change
Browse files Browse the repository at this point in the history
  • Loading branch information
gaborflorian committed Jun 11, 2024
1 parent c70a55d commit fc89cba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/hu/blackbelt/judo/sdk/Identifiable.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ static boolean equals(Identifiable identifiable, Object o) {
if (Identifiable.class.isAssignableFrom(o.getClass())) {
return identifiable.getIdentifier().equals(((Identifiable) o).getIdentifier())
&& identifiable.getVersion().equals(((Identifiable) o).getVersion())
&& identifiable.getEntityType().equals(((Identifiable) o).getEntityType()) ;
&& identifiable.getEntityType().equals(((Identifiable) o).getEntityType());
}
return false;
}
Expand Down

0 comments on commit fc89cba

Please sign in to comment.