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
6 changes: 2 additions & 4 deletions src/org/labkey/targetedms/TargetedMSModule.java
Original file line number Diff line number Diff line change
Expand Up @@ -686,19 +686,17 @@ protected void startupAfterSpringConfig(ModuleContext moduleContext)
TargetedMSService.get().registerSkylineDocumentImportListener(QCNotificationSender.get());
}

@NotNull
@Override
public Set<Class> getIntegrationTests()
public @NotNull Set<Class<?>> getIntegrationTests()
{
return Set.of(
MsDataSourceUtil.TestCase.class,
SkylineAuditLogManager.TestCase.class
);
}

@NotNull
@Override
public Set<Class> getUnitTests()
public @NotNull Set<Class<?>> getUnitTests()
{
return Set.of(
ComparisonCategory.TestCase.class,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ public class TargetedMsRepresentativeStateAuditProvider extends AbstractAuditTyp

static final List<FieldKey> defaultVisibleColumns = new ArrayList<>();

static {

static
{
defaultVisibleColumns.add(FieldKey.fromParts(COLUMN_NAME_CREATED));
defaultVisibleColumns.add(FieldKey.fromParts(COLUMN_NAME_CREATED_BY));
defaultVisibleColumns.add(FieldKey.fromParts(COLUMN_NAME_IMPERSONATED_BY));
Expand All @@ -50,10 +50,9 @@ public class TargetedMsRepresentativeStateAuditProvider extends AbstractAuditTyp
defaultVisibleColumns.add(FieldKey.fromParts(COLUMN_NAME_COMMENT));
}

@Override
protected AbstractAuditDomainKind getDomainKind()
public TargetedMsRepresentativeStateAuditProvider()
{
return new TargetedMsRepresentativeStateAuditDomainKind();
super(new TargetedMsRepresentativeStateAuditDomainKind());
}

@Override
Expand Down