Skip to content

Commit d7df817

Browse files
author
Grahame Grieve
committed
fix compile problem
1 parent 11ed682 commit d7df817

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

library/fhir3/fhir3_parser.pas

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ function TFHIRJQueryComposer.composeValueSet(vs : TFhirValueSet) : TBytes;
154154
if (oResource is TFhirValueSet) then
155155
begin
156156
b := composeValueSet(oResource as TFhirValueSet);
157-
stream.Write(b, 0, length(b));
157+
// stream.Write(b, 0, length(b));
158158
end
159159
else
160160
raise EFHIRException.create('Only ValueSet is supported for the JQuery format');

library/fhir4/fhir4_parser.pas

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ function TFHIRJQueryComposer.composeValueSet(vs : TFhirValueSet) : TBytes;
152152
if (oResource is TFhirValueSet) then
153153
begin
154154
b := composeValueSet(oResource as TFhirValueSet);
155-
stream.Write(b, 0, length(b));
155+
//stream.Write(b, 0, length(b));
156156
end
157157
else
158158
raise EFHIRException.create('Only ValueSet is supported for the JQuery format');

library/fhir4b/fhir4b_parser.pas

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ function TFHIRJQueryComposer.composeValueSet(vs : TFhirValueSet) : TBytes;
151151
if (oResource is TFhirValueSet) then
152152
begin
153153
b := composeValueSet(oResource as TFhirValueSet);
154-
stream.Write(b, 0, length(b));
154+
//stream.Write(b, 0, length(b));
155155
end
156156
else
157157
raise EFHIRException.create('Only ValueSet is supported for the JQuery format');

library/fhir5/fhir5_parser.pas

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ function TFHIRJQueryComposer.composeValueSet(vs : TFhirValueSet) : TBytes;
151151
if (oResource is TFhirValueSet) then
152152
begin
153153
b := composeValueSet(oResource as TFhirValueSet);
154-
stream.Write(b, 0, length(b));
154+
//stream.Write(b, 0, length(b));
155155
end
156156
else
157157
raise EFHIRException.create('Only ValueSet is supported for the JQuery format');

0 commit comments

Comments
 (0)