Skip to content

Commit

Permalink
hlm-3376: changed parameters for find by id
Browse files Browse the repository at this point in the history
  • Loading branch information
kanishq-egov committed Oct 20, 2023
1 parent 6325466 commit d96a892
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public List<Referral> find(ReferralSearch searchObject, Integer limit, Integer o
return referralList;
}

public List<Referral> findById(List<String> ids, String columnName, Boolean includeDeleted) {
public List<Referral> findById(List<String> ids, Boolean includeDeleted, String columnName) {
List<Referral> objFound = findInCache(ids).stream()
.filter(entity -> entity.getIsDeleted().equals(includeDeleted))
.collect(Collectors.toList());
Expand Down

0 comments on commit d96a892

Please sign in to comment.