Skip to content

Commit

Permalink
fixing imorts
Browse files Browse the repository at this point in the history
  • Loading branch information
devonbush committed Jun 30, 2024
1 parent 1c05784 commit f7a9bef
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
package bio.terra.pearl.core.service.rule;

import bio.terra.pearl.core.dao.participant.MailingAddressDao;
import bio.terra.pearl.core.model.address.MailingAddress;
import bio.terra.pearl.core.model.participant.Enrollee;
import bio.terra.pearl.core.model.participant.ParticipantUser;
import bio.terra.pearl.core.model.participant.Profile;
Expand All @@ -20,15 +18,13 @@ public class EnrolleeContextService {
private final ProfileService profileService;
private final EnrolleeService enrolleeService;
private final ParticipantUserService participantUserService;
private final MailingAddressDao mailingAddressDao;


public EnrolleeContextService(ProfileService profileService, @Lazy EnrolleeService enrolleeService,
ParticipantUserService participantUserService, MailingAddressDao mailingAddressDao) {
ParticipantUserService participantUserService) {
this.profileService = profileService;
this.enrolleeService = enrolleeService;
this.participantUserService = participantUserService;
this.mailingAddressDao = mailingAddressDao;
}

public EnrolleeContext fetchData(Enrollee enrollee) {
Expand Down

0 comments on commit f7a9bef

Please sign in to comment.