You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 4, 2022. It is now read-only.
We should not default to "value". If no valueFhirPath is given the default is not value. This could prevent us from failing fast. Once the mapping is fixed, this should be refactored.
The text was updated successfully, but these errors were encountered:
In:
src/main/java/de/numcodex/sq2cql/model/Mapping.java
@JsonCreator
public static Mapping of(@JsonProperty("key") TermCode key,
@JsonProperty("fhirResourceType") String resourceType,
@JsonProperty("valueFhirPath") String valueFhirPath,
@JsonProperty("fixedCriteria") Modifier... fixedCriteria) {
return new Mapping(Objects.requireNonNull(key), Objects.requireNonNull(resourceType), valueFhirPath,
return new Mapping(requireNonNull(key), requireNonNull(resourceType),
valueFhirPath == null ? "value" : valueFhirPath,
We should not default to "value". If no valueFhirPath is given the default is not value. This could prevent us from failing fast. Once the mapping is fixed, this should be refactored.
The text was updated successfully, but these errors were encountered: