Skip to content

Commit

Permalink
fix compile problem
Browse files Browse the repository at this point in the history
  • Loading branch information
Grahame Grieve committed Dec 29, 2024
1 parent 11ed682 commit d7df817
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion library/fhir3/fhir3_parser.pas
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ function TFHIRJQueryComposer.composeValueSet(vs : TFhirValueSet) : TBytes;
if (oResource is TFhirValueSet) then
begin
b := composeValueSet(oResource as TFhirValueSet);
stream.Write(b, 0, length(b));
// stream.Write(b, 0, length(b));
end
else
raise EFHIRException.create('Only ValueSet is supported for the JQuery format');
Expand Down
2 changes: 1 addition & 1 deletion library/fhir4/fhir4_parser.pas
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ function TFHIRJQueryComposer.composeValueSet(vs : TFhirValueSet) : TBytes;
if (oResource is TFhirValueSet) then
begin
b := composeValueSet(oResource as TFhirValueSet);
stream.Write(b, 0, length(b));
//stream.Write(b, 0, length(b));
end
else
raise EFHIRException.create('Only ValueSet is supported for the JQuery format');
Expand Down
2 changes: 1 addition & 1 deletion library/fhir4b/fhir4b_parser.pas
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ function TFHIRJQueryComposer.composeValueSet(vs : TFhirValueSet) : TBytes;
if (oResource is TFhirValueSet) then
begin
b := composeValueSet(oResource as TFhirValueSet);
stream.Write(b, 0, length(b));
//stream.Write(b, 0, length(b));
end
else
raise EFHIRException.create('Only ValueSet is supported for the JQuery format');
Expand Down
2 changes: 1 addition & 1 deletion library/fhir5/fhir5_parser.pas
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ function TFHIRJQueryComposer.composeValueSet(vs : TFhirValueSet) : TBytes;
if (oResource is TFhirValueSet) then
begin
b := composeValueSet(oResource as TFhirValueSet);
stream.Write(b, 0, length(b));
//stream.Write(b, 0, length(b));
end
else
raise EFHIRException.create('Only ValueSet is supported for the JQuery format');
Expand Down

0 comments on commit d7df817

Please sign in to comment.