Skip to content

Commit

Permalink
remove redundant/unused reload-existing-ig property (#607)
Browse files Browse the repository at this point in the history
  • Loading branch information
XcrigX authored Nov 21, 2023
1 parent 3640bd0 commit 21d51be
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 11 deletions.
9 changes: 0 additions & 9 deletions src/main/java/ca/uhn/fhir/jpa/starter/AppProperties.java
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ public class AppProperties {
private Cors cors = null;
private Partitioning partitioning = null;
private Boolean install_transitive_ig_dependencies = true;
private Boolean reload_existing_implementationguides = false;
private Map<String, PackageInstallationSpec> implementationGuides = null;

private String staticLocation = null;
Expand Down Expand Up @@ -565,14 +564,6 @@ public void setInstall_transitive_ig_dependencies(boolean install_transitive_ig_
this.install_transitive_ig_dependencies = install_transitive_ig_dependencies;
}

public boolean getReload_existing_implementationguides() {
return reload_existing_implementationguides;
}

public void setReload_existing_implementationguides(boolean reload_existing_implementationguides) {
this.reload_existing_implementationguides = reload_existing_implementationguides;
}

public Integer getBundle_batch_pool_size() {
return this.bundle_batch_pool_size;
}
Expand Down
2 changes: 0 additions & 2 deletions src/main/resources/application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,6 @@ hapi:
# server_address: http://hapi.fhir.org/baseR4
# defer_indexing_for_codesystems_of_size: 101
# install_transitive_ig_dependencies: true
### tells the server whether to attempt to load IG resources that are already present
# reload_existing_implementationGuides : false
#implementationguides:
### example from registry (packages.fhir.org)
# swiss:
Expand Down

0 comments on commit 21d51be

Please sign in to comment.