Clean up comments
This commit is contained in:
parent
03518848fe
commit
39e30a10c4
|
@ -119,7 +119,6 @@ public abstract class BaseWorkerContext extends I18nBase implements IWorkerConte
|
||||||
|
|
||||||
public BaseWorkerContext() throws FileNotFoundException, IOException, FHIRException {
|
public BaseWorkerContext() throws FileNotFoundException, IOException, FHIRException {
|
||||||
super();
|
super();
|
||||||
//CACHE
|
|
||||||
txCache = new TerminologyCache(lock, null);
|
txCache = new TerminologyCache(lock, null);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -130,7 +129,6 @@ public abstract class BaseWorkerContext extends I18nBase implements IWorkerConte
|
||||||
this.maps = maps;
|
this.maps = maps;
|
||||||
this.structures = profiles;
|
this.structures = profiles;
|
||||||
this.guides = guides;
|
this.guides = guides;
|
||||||
//CACHE
|
|
||||||
txCache = new TerminologyCache(lock, null);
|
txCache = new TerminologyCache(lock, null);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -723,7 +723,6 @@ public abstract class BaseWorkerContext extends I18nBase implements IWorkerConte
|
||||||
return expandVS(vs, cacheOk, heirarchical, incompleteOk, p);
|
return expandVS(vs, cacheOk, heirarchical, incompleteOk, p);
|
||||||
}
|
}
|
||||||
|
|
||||||
//TESTME
|
|
||||||
public ValueSetExpansionOutcome expandVS(ValueSet vs, boolean cacheOk, boolean hierarchical, boolean incompleteOk, Parameters pIn) {
|
public ValueSetExpansionOutcome expandVS(ValueSet vs, boolean cacheOk, boolean hierarchical, boolean incompleteOk, Parameters pIn) {
|
||||||
if (pIn == null) {
|
if (pIn == null) {
|
||||||
throw new Error(formatMessage(I18nConstants.NO_PARAMETERS_PROVIDED_TO_EXPANDVS));
|
throw new Error(formatMessage(I18nConstants.NO_PARAMETERS_PROVIDED_TO_EXPANDVS));
|
||||||
|
@ -937,7 +936,6 @@ public abstract class BaseWorkerContext extends I18nBase implements IWorkerConte
|
||||||
return code.hasVersion() ? code.getSystem()+"|"+code.getVersion() : code.getSystem();
|
return code.hasVersion() ? code.getSystem()+"|"+code.getVersion() : code.getSystem();
|
||||||
}
|
}
|
||||||
|
|
||||||
//TESTME
|
|
||||||
@Override
|
@Override
|
||||||
public ValidationResult validateCode(final ValidationOptions optionsArg, final Coding code, final ValueSet vs, final ValidationContextCarrier ctxt) {
|
public ValidationResult validateCode(final ValidationOptions optionsArg, final Coding code, final ValueSet vs, final ValidationContextCarrier ctxt) {
|
||||||
|
|
||||||
|
@ -1075,7 +1073,6 @@ public abstract class BaseWorkerContext extends I18nBase implements IWorkerConte
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//TESTME
|
|
||||||
@Override
|
@Override
|
||||||
public ValidationResult validateCode(ValidationOptions options, CodeableConcept code, ValueSet vs) {
|
public ValidationResult validateCode(ValidationOptions options, CodeableConcept code, ValueSet vs) {
|
||||||
CacheToken cacheToken = txCache.generateValidationToken(options, code, vs);
|
CacheToken cacheToken = txCache.generateValidationToken(options, code, vs);
|
||||||
|
|
Loading…
Reference in New Issue