This commit is contained in:
Tadgh 2021-03-10 12:03:52 -05:00
parent 3e249d0261
commit 374a65db7d
1 changed files with 1 additions and 1 deletions

View File

@ -473,7 +473,7 @@ public class BulkDataExportSvcImpl implements IBulkDataExportSvc {
} else if (theExportStyle.equals(GROUP) || theExportStyle.equals(PATIENT)) {
return getPatientCompartmentResources();
} else {
return throw new IllegalArgumentException(String.format("HAPI FHIR does not recognize a Bulk Export request of type: %s", theExportStyle));
throw new IllegalArgumentException(String.format("HAPI FHIR does not recognize a Bulk Export request of type: %s", theExportStyle));
}
}