Skip to content

Commit 066f736

Browse files
committed
Fixed checkstyle violation
1 parent 510a977 commit 066f736

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

service/src/main/java/uk/nhs/adaptors/gp2gp/ehr/mapper/diagnosticreport/DiagnosticReportMapper.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,10 @@ private List<Observation> fetchObservations(DiagnosticReport diagnosticReport) {
215215
/**
216216
* For correct display in EMIS, any specimen without an observation must be assigned a dummy observation.
217217
*/
218-
private List<Observation> addDummyObservationsToObservationList(List<Observation> observations, List<Specimen> specimens, DiagnosticReport diagnosticReport) {
218+
private List<Observation> addDummyObservationsToObservationList(
219+
List<Observation> observations,
220+
List<Specimen> specimens,
221+
DiagnosticReport diagnosticReport) {
219222
List<Observation> dummyObservations = new ArrayList<>();
220223

221224
if (hasSpecimenWithoutObservation(specimens, observations)) {

0 commit comments

Comments
 (0)