Skip to content

Commit

Permalink
MAT-6785 reorder functions
Browse files Browse the repository at this point in the history
  • Loading branch information
adongare committed Mar 5, 2024
1 parent eac58a1 commit 5ce1c5e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/gov/cms/madie/services/MeasureMapper.java
Original file line number Diff line number Diff line change
Expand Up @@ -375,6 +375,8 @@ default ValuesetsType valueSetsToValuesetsType(Set<CQLValueSet> cqlValueSets) {
return valuesetsType;
}

List<ValuesetType> valueSetsToValuesetType(Set<CQLValueSet> cqlValueSets);

@Mapping(target = "datatype", constant = "")
@Mapping(target = "suppDataElement", source = "false")
@Mapping(target = "id", expression = "java(java.util.UUID.randomUUID().toString())")
Expand All @@ -383,8 +385,6 @@ default ValuesetsType valueSetsToValuesetsType(Set<CQLValueSet> cqlValueSets) {
@Mapping(target = "originalName", source = "name")
ValuesetType cqlValueSetToValuesetType(CQLValueSet cqlValueSet);

List<ValuesetType> valueSetsToValuesetType(Set<CQLValueSet> cqlValueSets);

default CodeSystemsType cqlCodeSystemsToCodeSystemsType(Set<CQLCodeSystem> codeSystems) {
if (!CollectionUtils.isEmpty(codeSystems)) {
CodeSystemsType codeSystemsType = new CodeSystemsType();
Expand Down

0 comments on commit 5ce1c5e

Please sign in to comment.