Skip to content

Commit f1d765d

Browse files
committed
DASH-336 Java 8 fixes
1 parent 2fa0371 commit f1d765d

File tree

1 file changed

+15
-4
lines changed

1 file changed

+15
-4
lines changed

dashboard/impl/src/java/org/sakaiproject/dash/entityprovider/DashboardEntityProvider.java

+15-4
Original file line numberDiff line numberDiff line change
@@ -95,11 +95,22 @@ public List<?> getCalendarItems(EntityView view, EntityReference ref, Map<String
9595

9696
@Setter
9797
private DashboardLogic dashboardLogic;
98+
public void setDashboardLogic( DashboardLogic dashboardLogic )
99+
{
100+
this.dashboardLogic = dashboardLogic;
101+
}
98102

99-
@Setter
100-
private DashboardCommonLogic dashboardCommonLogic;
103+
@Setter
104+
private DashboardCommonLogic dashboardCommonLogic;
105+
public void setDashboardCommonLogic( DashboardCommonLogic dashboardCommonLogic )
106+
{
107+
this.dashboardCommonLogic = dashboardCommonLogic;
108+
}
101109

102110
@Setter
103111
private SakaiProxy sakaiProxy;
104-
105-
}
112+
public void setSakaiProxy( SakaiProxy sakaiProxy )
113+
{
114+
this.sakaiProxy = sakaiProxy;
115+
}
116+
}

0 commit comments

Comments
 (0)