@@ -143,20 +143,20 @@ private String mapObservationsAssociatedWithSpecimen(Specimen specimen, List<Obs
143143 observationsAssociatedWithSpecimen = observations ;
144144 } else {
145145 observationsAssociatedWithSpecimen = observations .stream ()
146- .filter (Observation ::hasSpecimen )
147- .filter (observation -> observation .getSpecimen ().getReference ().equals (specimen .getId ()))
148- .collect (Collectors .toList ());
146+ .filter (Observation ::hasSpecimen )
147+ .filter (observation -> observation .getSpecimen ().getReference ().equals (specimen .getId ()))
148+ .collect (Collectors .toList ());
149149 }
150150
151151 return observationsAssociatedWithSpecimen .stream ()
152- .filter (Predicate .not (DiagnosticReportMapper ::isFilingComment ))
153- .map (observationMapper ::mapObservationToCompoundStatement )
154- .collect (Collectors .joining ());
152+ .filter (Predicate .not (DiagnosticReportMapper ::isFilingComment ))
153+ .map (observationMapper ::mapObservationToCompoundStatement )
154+ .collect (Collectors .joining ());
155155 }
156156
157157 private boolean dummySpecimenOrObservationExists (Specimen specimen , List <Observation > observations ) {
158158 return specimen .getIdElement ().getIdPart ().contains (DUMMY_SPECIMEN_ID_PREFIX )
159- || (!observations .isEmpty () && observations .getFirst ().getIdElement ().getIdPart ().contains (DUMMY_OBSERVATION_ID_PREFIX ));
159+ || (!observations .isEmpty () && observations .getFirst ().getIdElement ().getIdPart ().contains (DUMMY_OBSERVATION_ID_PREFIX ));
160160 }
161161
162162 private Optional <String > buildSpecimenNarrativeStatement (Specimen specimen , String availabilityTimeElement ,
0 commit comments