Skip to content
Merged
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
11 changes: 1 addition & 10 deletions pepdb/src/org/scharp/atlas/pepdb/PepDBModule.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import org.apache.logging.log4j.Logger;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import org.labkey.api.data.Container;
import org.labkey.api.data.ContainerManager;
import org.labkey.api.data.DbSchema;
import org.labkey.api.module.DefaultModule;
Expand All @@ -20,7 +19,6 @@

import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.Set;

public class PepDBModule extends DefaultModule
Expand Down Expand Up @@ -58,7 +56,7 @@ protected Collection<WebPartFactory> createWebPartFactories()
}

@Override
public WebPartView getWebPartView(@NotNull ViewContext portalCtx, @NotNull Portal.WebPart webPart)
public WebPartView<?> getWebPartView(@NotNull ViewContext portalCtx, @NotNull Portal.WebPart webPart)
{
return new PepDBWebPart();
}
Expand All @@ -71,13 +69,6 @@ public boolean hasScripts()
return true;
}

@Override
@NotNull
public Collection<String> getSummary(Container c)
{
return Collections.emptyList();
}

@Override
public void doStartup(ModuleContext moduleContext)
{
Expand Down