Skip to content

Commit 268c9bb

Browse files
authored
Migrate to getSchemaVersion(). Remove ConsolidateScripts. (#15)
1 parent 2e0836c commit 268c9bb

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

LDK/module.properties

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
ModuleClass: org.labkey.ldk.LDKModule
22
ModuleDependencies: Experiment, Pipeline
3-
ConsolidateScripts: false
43
ManageVersion: false

LDK/src/org/labkey/ldk/LDKModule.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
package org.labkey.ldk;
1818

1919
import org.jetbrains.annotations.NotNull;
20+
import org.jetbrains.annotations.Nullable;
2021
import org.labkey.api.data.Container;
2122
import org.labkey.api.data.DbScope;
2223
import org.labkey.api.data.bigiron.ClrAssemblyManager;
@@ -53,7 +54,7 @@ public String getName()
5354
}
5455

5556
@Override
56-
public double getVersion()
57+
public @Nullable Double getSchemaVersion()
5758
{
5859
return 12.39;
5960
}

laboratory/module.properties

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
ModuleClass: org.labkey.laboratory.LaboratoryModule
22
ModuleDependencies: Experiment, LDK
3-
ConsolidateScripts: false
43
ManageVersion: false

laboratory/src/org/labkey/laboratory/LaboratoryModule.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
package org.labkey.laboratory;
1717

1818
import org.jetbrains.annotations.NotNull;
19+
import org.jetbrains.annotations.Nullable;
1920
import org.json.JSONObject;
2021
import org.labkey.api.data.Container;
2122
import org.labkey.api.data.ContainerManager;
@@ -74,7 +75,7 @@ public String getName()
7475
}
7576

7677
@Override
77-
public double getVersion()
78+
public @Nullable Double getSchemaVersion()
7879
{
7980
return 12.304;
8081
}

0 commit comments

Comments
 (0)