Skip to content

Commit 87dd792

Browse files
committed
Remove comments & test change
1 parent 2c0bd02 commit 87dd792

File tree

2 files changed

+1
-23
lines changed

2 files changed

+1
-23
lines changed

cqf-fhir-cr-hapi/src/main/java/org/opencds/cqf/fhir/cr/hapi/r4/library/LibraryArtifactDiffProvider.java

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,6 @@ public IBaseParameters crmiArtifactDiff(
4141
IIdType sourceId = getIdType(FhirVersionEnum.R4, "Library", source);
4242
IIdType targetId = getIdType(FhirVersionEnum.R4, "Library", target);
4343

44-
// var params = getArtifactDiffParameters(compareComputable.getValue(), compareExecutable.getValue(),
45-
// terminologyEndpoint);
46-
4744
return libraryProcessorFactory
4845
.create(requestDetails)
4946
.artifactDiff(
@@ -53,22 +50,4 @@ public IBaseParameters crmiArtifactDiff(
5350
compareExecutable.getValue(),
5451
terminologyEndpoint);
5552
}
56-
57-
/* private static Parameters getArtifactDiffParameters(
58-
Boolean compareComputable,
59-
Boolean compareExecutable,
60-
Endpoint terminologyEndpoint) {
61-
var params = new Parameters();
62-
if (compareComputable != null) {
63-
params.addParameter("compareComputable", compareComputable);
64-
}
65-
if (compareExecutable != null) {
66-
params.addParameter("compareExecutable", compareExecutable);
67-
}
68-
if (terminologyEndpoint != null) {
69-
params.addParameter().setName("terminologyEndpoint").setResource(terminologyEndpoint);
70-
}
71-
return params;
72-
}*/
73-
7453
}

cqf-fhir-cr-hapi/src/test/java/org/opencds/cqf/fhir/cr/hapi/r4/BaseCrR4TestServer.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,7 @@ public void loadResourceFromPath(String path) {
135135

136136
public void loadBundle(String theLocation) {
137137
var bundy = (Bundle) readResource(theLocation);
138-
var b = ourClient.transaction().withBundle(bundy).execute();
139-
b.copy();
138+
ourClient.transaction().withBundle(bundy).execute();
140139
}
141140

142141
protected RequestDetails setupRequestDetails() {

0 commit comments

Comments
 (0)