Skip to content

Commit

Permalink
update readMe file
Browse files Browse the repository at this point in the history
  • Loading branch information
mherman22 committed Nov 16, 2023
1 parent 652b62e commit a18324e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 19 deletions.
2 changes: 2 additions & 0 deletions README.md
Expand Up @@ -150,6 +150,7 @@ This is the list of currently supported domains in their loading order:
1. [Cohort Attribute Types (CSV files)](readme/cohort.md#domain-cohortattributetypes)
1. [FHIR Concept Sources (CSV files)](readme/fhir.md#domain-fhirconceptsources)
1. [FHIR Patient Identifier Systems (CSV Files)](readme/fhir.md#domain-fhirpatientidentifiersystems)
2. [FHIR ContactPointMap (CSV Files)](https://github.com/mherman22/openmrs-module-initializer/blob/ContactPointMap-impl/readme/fhir.md#domain-fhircontactpointmap)
1. [AMPATH Forms (JSON files)](readme/ampathforms.md)
1. [AMPATH Forms Translations (JSON files)](readme/ampathformstranslations.md)
1. [HTML Forms (XML files)](readme/htmlforms.md)
Expand Down Expand Up @@ -199,6 +200,7 @@ See the [documentation on Initializer's logging properties](readme/rtprops.md#lo
* Added support for 'queues' domain.
* Added support for 'addresshierarchy' domain.
* Fix for Liquibase Loader to ensure compatibility with OpenMRS versions 2.5.5+
* Added support for 'fhircontactpointmap' domain.

#### Version 2.6.0
* Added support for 'cohorttypes' and 'cohortattributetypes' domains.
Expand Down
Expand Up @@ -9,24 +9,6 @@
*/
package org.openmrs.module.initializer;

import org.openmrs.module.Module;
import org.openmrs.module.ModuleFactory;

import java.io.File;

public abstract class DomainBaseModuleContextSensitive_2_6_Test extends DomainBaseModuleContextSensitiveTest {

public DomainBaseModuleContextSensitive_2_6_Test() {
super();
{
Module mod = new Module("", "queue", "", "", "", "1.0.0");
mod.setFile(new File(""));
ModuleFactory.getStartedModulesMap().put(mod.getModuleId(), mod);
}
}
public abstract class DomainBaseModuleContextSensitive_2_6_Test extends DomainBaseModuleContextSensitive_2_3_Test {

@Override
public void updateSearchIndex() {
// to prevent Data Filter's 'Illegal Record Access'
}
}

0 comments on commit a18324e

Please sign in to comment.