Skip to content

Commit

Permalink
Fix compile issue
Browse files Browse the repository at this point in the history
Signed-off-by: Peter Nied <[email protected]>
  • Loading branch information
peternied committed Feb 9, 2024
1 parent 07bcfe0 commit e7f36b0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public List<String> getViewNames() {
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
final Request that = (Request) o;
final Response that = (Response) o;
return views.equals(that.views);
}

Expand Down

0 comments on commit e7f36b0

Please sign in to comment.