Skip to content

Commit fe99572

Browse files
authored
Return Set<Class<?>> from Module "get test" methods (#236)
1 parent 4457bba commit fe99572

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

pepdb/src/org/scharp/atlas/pepdb/PepDBModule.java

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
import org.apache.logging.log4j.Logger;
55
import org.jetbrains.annotations.NotNull;
66
import org.jetbrains.annotations.Nullable;
7-
import org.labkey.api.data.Container;
87
import org.labkey.api.data.ContainerManager;
98
import org.labkey.api.data.DbSchema;
109
import org.labkey.api.module.DefaultModule;
@@ -20,7 +19,6 @@
2019

2120
import java.util.Arrays;
2221
import java.util.Collection;
23-
import java.util.Collections;
2422
import java.util.Set;
2523

2624
public class PepDBModule extends DefaultModule
@@ -58,7 +56,7 @@ protected Collection<WebPartFactory> createWebPartFactories()
5856
}
5957

6058
@Override
61-
public WebPartView getWebPartView(@NotNull ViewContext portalCtx, @NotNull Portal.WebPart webPart)
59+
public WebPartView<?> getWebPartView(@NotNull ViewContext portalCtx, @NotNull Portal.WebPart webPart)
6260
{
6361
return new PepDBWebPart();
6462
}
@@ -71,13 +69,6 @@ public boolean hasScripts()
7169
return true;
7270
}
7371

74-
@Override
75-
@NotNull
76-
public Collection<String> getSummary(Container c)
77-
{
78-
return Collections.emptyList();
79-
}
80-
8172
@Override
8273
public void doStartup(ModuleContext moduleContext)
8374
{

0 commit comments

Comments
 (0)