Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Viral_Load_Assay/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import org.labkey.gradle.util.BuildUtils;

dependencies {
external "org.apache.commons:commons-math3:${commonsMath3Version}"
BuildUtils.addLabKeyDependency(project: project, config: "implementation", depProjectPath: ":server:modules:LabDevKitModules:LDK", depProjectConfig: "apiJarFile")
BuildUtils.addLabKeyDependency(project: project, config: "implementation", depProjectPath: ":server:modules:LabDevKitModules:laboratory", depProjectConfig: "apiJarFile")
}
4 changes: 4 additions & 0 deletions Viral_Load_Assay/resources/credits/jars.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{table}
Filename|Component|Version|Source|License|Purpose
commons-math3-3.6.1.jar|Commons Math|3.6.1|{link:Apache|http://commons.apache.org/math/}|{link:Apache 2.0|http://www.apache.org/licenses/LICENSE-2.0}|Lightweight, self-contained mathematics and statistics components
{table}
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
import org.apache.logging.log4j.Logger;
import org.apache.logging.log4j.LogManager;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import org.labkey.api.module.Module;

import javax.annotation.Nullable;
import java.lang.reflect.Constructor;
import java.lang.reflect.InvocationTargetException;
import java.util.List;
Expand All @@ -42,7 +42,8 @@ public DefaultDataEntryFormFactory(@NotNull Class<? extends DataEntryForm> clazz
_module = module;
}

@Nullable @Override
@Nullable
@Override
public DataEntryForm createForm(DataEntryFormContext ctx)
{
try
Expand Down