Skip to content

Commit

Permalink
Merge pull request sakaiproject#155 from bkirschn/master
Browse files Browse the repository at this point in the history
DASH-336 Java 8 fixes
  • Loading branch information
bethkirschner committed Feb 10, 2015
2 parents 2779afe + f1d765d commit 5f92dac
Showing 1 changed file with 15 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,11 +95,22 @@ public List<?> getCalendarItems(EntityView view, EntityReference ref, Map<String

@Setter
private DashboardLogic dashboardLogic;
public void setDashboardLogic( DashboardLogic dashboardLogic )
{
this.dashboardLogic = dashboardLogic;
}

@Setter
private DashboardCommonLogic dashboardCommonLogic;
@Setter
private DashboardCommonLogic dashboardCommonLogic;
public void setDashboardCommonLogic( DashboardCommonLogic dashboardCommonLogic )
{
this.dashboardCommonLogic = dashboardCommonLogic;
}

@Setter
private SakaiProxy sakaiProxy;

}
public void setSakaiProxy( SakaiProxy sakaiProxy )
{
this.sakaiProxy = sakaiProxy;
}
}

0 comments on commit 5f92dac

Please sign in to comment.