Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into do-20241212-bump-ucum
Browse files Browse the repository at this point in the history
  • Loading branch information
dotasek committed Dec 16, 2024
2 parents bd6a1f2 + 3c20be7 commit 803b50a
Show file tree
Hide file tree
Showing 32 changed files with 1,287 additions and 126 deletions.
Binary file modified i18n-coverage-table.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public interface IPackageVisitorProcessor {
public void alreadyVisited(String pid) throws FHIRException, IOException, EOperationOutcome;
}

private List<String> resourceTypes = new ArrayList<>();
private Set<String> resourceTypes = new HashSet<>();
private List<String> versions = new ArrayList<>();
private boolean corePackages;
private boolean oldVersions;
Expand All @@ -79,16 +79,16 @@ public interface IPackageVisitorProcessor {
private String cache;
private int step;

public List<String> getResourceTypes() {
public Set<String> getResourceTypes() {
return resourceTypes;
}

public void setResourceTypes(List<String> resourceTypes) {
public void setResourceTypes(Set<String> resourceTypes) {
this.resourceTypes = resourceTypes;
}

public void setResourceTypes(String... resourceTypes) {
this.resourceTypes = new ArrayList<String>();
this.resourceTypes = new HashSet<String>();
for (String s : resourceTypes) {
this.resourceTypes.add(s);
}
Expand Down
Loading

0 comments on commit 803b50a

Please sign in to comment.