File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed
SkylineToolsStore/src/org/labkey/skylinetoolsstore
signup/src/org/labkey/signup
testresults/src/org/labkey/testresults Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ protected Collection<WebPartFactory> createWebPartFactories()
7373 addLegacyNames ("Skyline Tools Store" );
7474 }
7575 @ Override
76- public WebPartView getWebPartView (ViewContext portalCtx , Portal .WebPart webPart ) throws WebPartConfigurationException
76+ public WebPartView getWebPartView (@ NotNull ViewContext portalCtx , Portal .@ NotNull WebPart webPart ) throws WebPartConfigurationException
7777 {
7878 return new SkylineToolsStoreWebPart ();
7979 }
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ protected Collection<WebPartFactory> createWebPartFactories()
6969 BaseWebPartFactory signupWebpart = new BaseWebPartFactory ("Sign Up" )
7070 {
7171 @ Override
72- public WebPartView getWebPartView (ViewContext portalCtx , Portal .WebPart webPart )
72+ public WebPartView getWebPartView (@ NotNull ViewContext portalCtx , Portal .@ NotNull WebPart webPart )
7373 {
7474 JspView <SignUpController .SignupForm > view = new JspView ("/org/labkey/signup/signupPage.jsp" , new SignUpController .SignupForm ());
7575 view .setTitle ("Sign Up" );
Original file line number Diff line number Diff line change 11package org .labkey .testresults ;
22
3+ import org .jetbrains .annotations .NotNull ;
34import org .labkey .api .data .Container ;
45import org .labkey .api .view .BaseWebPartFactory ;
56import org .labkey .api .view .JspView ;
@@ -21,7 +22,7 @@ public TestResultsWebPart()
2122 }
2223
2324 @ Override
24- public WebPartView getWebPartView (ViewContext portalCtx , Portal .WebPart webPart ) throws WebPartConfigurationException
25+ public WebPartView getWebPartView (@ NotNull ViewContext portalCtx , Portal .@ NotNull WebPart webPart ) throws WebPartConfigurationException
2526 {
2627 Container c =portalCtx .getContainer ();
2728 TestsDataBean bean = null ;
You can’t perform that action at this time.
0 commit comments