Skip to content

Commit 309b3de

Browse files
committed
work
1 parent e784c60 commit 309b3de

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/main/java/org/woehlke/java/simpleworklist/domain/db/data/project/ProjectServiceImpl.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ public ProjectServiceImpl(
3838
@Override
3939
public List<Project> findRootProjectsByContext(@NotNull Context context) {
4040
log.info("findRootProjectsByContext");
41-
//TODO: #245 change List<Project> to Page<Project>
4241
return projectRepository.findByParentIsNullAndContext(context);
4342
}
4443

@@ -51,7 +50,6 @@ public Page<Project> findRootProjectsByContext(@NotNull Context context, Pageabl
5150
@Override
5251
public List<Project> findAllProjectsByContext(@NotNull Context context) {
5352
log.info("findAllProjectsByContext");
54-
//TODO: #245 change List<Project> to Page<Project>
5553
return projectRepository.findByContext(context);
5654
}
5755

0 commit comments

Comments
 (0)