Skip to content

Commit

Permalink
Fixed a few missing null annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
DavyLandman committed Sep 2, 2024
1 parent 8218c18 commit 3998142
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ public boolean equals(@Nullable Object other) {

// TODO: there should be a faster way for this
for (String key : parameters.keySet()) {
if (!getParameter(key).equals(o.getParameter(key))) {
if (!parameters.get(key).equals(o.getParameter(key))) {
return false;
}
}
Expand Down

0 comments on commit 3998142

Please sign in to comment.