Skip to content

Commit

Permalink
remove retired concepts from panels when resulting
Browse files Browse the repository at this point in the history
  • Loading branch information
slubwama committed Jan 20, 2024
1 parent f5e9198 commit 87c02b3
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,10 @@ private static List<Concept> getParameterConcepts(Concept concept) {

List<Concept> concepts = new ArrayList<Concept>();
for (ConceptSet cs : concept.getConceptSets()) {
Concept c = cs.getConcept();
concepts.add(c);
if(!cs.getConcept().getRetired()) {
Concept c = cs.getConcept();
concepts.add(c);
}
}
return concepts;
}
Expand Down

0 comments on commit 87c02b3

Please sign in to comment.