this.completedAt = completedAt;
}
public List<SprintStory> getSprintStories() throws LazyLoadingRequiresInstanceOfEasyBacklog {
if(!EasyBacklog.hasInstance()) {
throw new LazyLoadingRequiresInstanceOfEasyBacklog();
}
List<SprintStory> sprintStories = EasyBacklog.getEasyBacklog().getSprintStories(getBacklog());
ArrayList<SprintStory> retVal = new ArrayList<SprintStory>();
for(SprintStory ss : sprintStories) {
if (ss.getSprint().equals(this)) {