Skip to content

Commit

Permalink
Merge pull request opensrp#194 from d-tree-org/fix-codacy
Browse files Browse the repository at this point in the history
🪣 removed unused imports
  • Loading branch information
issyzac authored Feb 2, 2024
2 parents 45de533 + 2dd6392 commit 505146e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
import org.smartregister.chw.anc.domain.VisitDetail;
import org.smartregister.chw.anc.model.BaseAncHomeVisitAction;
import org.smartregister.chw.util.JsonFormUtils;
import org.smartregister.domain.Alert;

import java.text.MessageFormat;
import java.util.List;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ protected void bindEvents(Map<String, ServiceWrapper> serviceWrapperMap) throws
evaluatePlayAssessmentCounseling();
evaluateCCDCommunicationAssessment();
evaluateCareGiverResponsiveness();
evaluateCCDChildDiscipline(serviceWrapperMap);
evaluateCCDChildDiscipline();
evaluateProblemSolving();
evaluateDevelopmentScreening();
} catch (BaseAncHomeVisitAction.ValidationException e) {
Expand Down Expand Up @@ -542,7 +542,7 @@ protected void evaluateCareGiverResponsiveness() throws BaseAncHomeVisitAction.V
actionList.put(title, action);
}

private void evaluateCCDChildDiscipline(Map<String, ServiceWrapper> serviceWrapperMap) throws Exception {
private void evaluateCCDChildDiscipline() throws Exception {
String title = context.getString(R.string.ccd_child_discipline_title);
title = title.replace("({0})", "");
CCDChildDisciplineActionHelper ccdChildDisciplineAction = new CCDChildDisciplineActionHelper(context);
Expand Down

0 comments on commit 505146e

Please sign in to comment.