Revert commit (back to the drawing board)

This commit is contained in:
dotasek 2024-01-25 09:09:37 -05:00
parent 7ba2cfa153
commit d409e75a78
1 changed files with 2 additions and 6 deletions

View File

@ -482,13 +482,9 @@ public class FHIRToolingClient extends FHIRBaseToolingClient {
recordUse();
Parameters p = expParams == null ? new Parameters() : expParams.copy();
p.addParameter().setName("valueSet").setResource(source);
if (params == null) {
params = new HashMap<>();
for (String n : params.keySet()) {
p.addParameter().setName(n).setValue(new StringType(params.get(n)));
}
for (String n : params.keySet()) {
p.addParameter().setName(n).setValue(new StringType(params.get(n)));
}
org.hl7.fhir.dstu3.utils.client.network.ResourceRequest<Resource> result = null;
try {