Skip to content

Commit

Permalink
[MASTER-DEV] Replace break by continue in import handlers
Browse files Browse the repository at this point in the history
  • Loading branch information
vgarciabnz committed Jun 30, 2021
1 parent 27cc48e commit fa1d45f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public void handleEnrollmentImportSummary(List<EnrollmentImportSummary> enrollme
String enrollmentUid = enrollmentImportSummary == null ? null : enrollmentImportSummary.reference();

if (enrollmentUid == null) {
break;
continue;
}

State state = getState(enrollmentImportSummary.status());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public void handleEventImportSummaries(List<EventImportSummary> eventImportSumma
String eventUid = eventImportSummary == null ? null : eventImportSummary.reference();

if (eventUid == null) {
break;
continue;
}

State state = getState(eventImportSummary.status());
Expand Down

0 comments on commit fa1d45f

Please sign in to comment.