Skip to content

Commit

Permalink
Merge pull request #706 from /issues/705-PagedResponse-equals
Browse files Browse the repository at this point in the history
Fix #705: Coverity: Eq: Problems with implementation of equals()
  • Loading branch information
banterCZ authored Dec 8, 2023
2 parents 836d857 + 03d652a commit 297be5f
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
package io.getlime.push.model.base;

import io.getlime.core.rest.model.base.response.ObjectResponse;
import lombok.EqualsAndHashCode;

/**
* Generic response class for paged results
Expand All @@ -25,6 +26,7 @@
*
* @param <T> Type of the paged records.
*/
@EqualsAndHashCode(callSuper = true)
public class PagedResponse<T> extends ObjectResponse<T> {

private int page;
Expand Down

0 comments on commit 297be5f

Please sign in to comment.