Fix static code analysis problem with class name
This commit is contained in:
parent
079f49764a
commit
88289dcab3
|
@ -119,7 +119,7 @@ public class HapiFhirJpaMigrationTasks extends BaseMigrationTasks<VersionEnum> {
|
||||||
|
|
||||||
protected void init720() {
|
protected void init720() {
|
||||||
// Start of migrations from 7.0 to 7.2
|
// Start of migrations from 7.0 to 7.2
|
||||||
new HapiFhirMigrationTasks_V7_2(forVersion(VersionEnum.V7_2_0)).populate();
|
new HapiFhirMigrationTasksV7(forVersion(VersionEnum.V7_2_0)).populateV720();
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void init700() {
|
protected void init700() {
|
||||||
|
|
|
@ -7,14 +7,14 @@ import java.util.Collection;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.concurrent.atomic.AtomicInteger;
|
import java.util.concurrent.atomic.AtomicInteger;
|
||||||
|
|
||||||
public class HapiFhirMigrationTasks_V7_2 {
|
public class HapiFhirMigrationTasksV7 {
|
||||||
private final Builder myVersion;
|
private final Builder myVersion;
|
||||||
|
|
||||||
public HapiFhirMigrationTasks_V7_2(Builder theVersion) {
|
public HapiFhirMigrationTasksV7(Builder theVersion) {
|
||||||
this.myVersion = theVersion;
|
this.myVersion = theVersion;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void populate() {
|
public void populateV720() {
|
||||||
// allow null codes in concept map targets
|
// allow null codes in concept map targets
|
||||||
myVersion
|
myVersion
|
||||||
.onTable("TRM_CONCEPT_MAP_GRP_ELM_TGT")
|
.onTable("TRM_CONCEPT_MAP_GRP_ELM_TGT")
|
Loading…
Reference in New Issue