File tree Expand file tree Collapse file tree 4 files changed +4
-14
lines changed
hivrc/src/org/labkey/hivrc
primeseq/src/org/labkey/primeseq Expand file tree Collapse file tree 4 files changed +4
-14
lines changed Original file line number Diff line number Diff line change 44import org .jetbrains .annotations .Nullable ;
55import org .labkey .api .data .Container ;
66import org .labkey .api .ldk .ExtendedSimpleModule ;
7- import org .labkey .api .module .Module ;
8- import org .labkey .api .module .ModuleContext ;
9- import org .labkey .api .query .DefaultSchema ;
10- import org .labkey .api .query .QuerySchema ;
117import org .labkey .api .util .HtmlString ;
128import org .labkey .api .view .BaseWebPartFactory ;
139import org .labkey .api .view .HtmlView ;
@@ -53,7 +49,7 @@ protected Collection<WebPartFactory> createWebPartFactories()
5349 new BaseWebPartFactory ("HIVRC Analysis Header" )
5450 {
5551 @ Override
56- public WebPartView getWebPartView (@ NotNull ViewContext portalCtx , @ NotNull Portal .WebPart webPart )
52+ public WebPartView <?> getWebPartView (@ NotNull ViewContext portalCtx , @ NotNull Portal .WebPart webPart )
5753 {
5854 if (!portalCtx .getContainer ().isWorkbook ())
5955 {
Original file line number Diff line number Diff line change @@ -208,7 +208,7 @@ public JSONObject getPageContextJson(ContainerUser context)
208208 }
209209
210210 @ Override
211- public @ NotNull Set <Class > getUnitTests ()
211+ public @ NotNull Set <Class <?> > getUnitTests ()
212212 {
213213 return PageFlowUtil .set (mGapReleaseGenerator .TestCase .class );
214214 }
Original file line number Diff line number Diff line change @@ -29,13 +29,7 @@ public class mGapAuditTypeProvider extends AbstractAuditTypeProvider implements
2929
3030 public mGapAuditTypeProvider ()
3131 {
32-
33- }
34-
35- @ Override
36- protected AbstractAuditDomainKind getDomainKind ()
37- {
38- return new mGapAuditTypeProvider .AuditDomainKind ();
32+ super (new mGapAuditTypeProvider .AuditDomainKind ());
3933 }
4034
4135 @ Override
Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ public PipelineStartup()
125125 }
126126
127127 @ Override
128- public @ NotNull Set <Class > getUnitTests ()
128+ public @ NotNull Set <Class <?> > getUnitTests ()
129129 {
130130 return PageFlowUtil .set (ClusterMaintenanceTask .TestCase .class );
131131 }
You can’t perform that action at this time.
0 commit comments