Skip to content

Commit 4d8cbd4

Browse files
committed
work in progress
1 parent c396da9 commit 4d8cbd4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/woehlke/simpleworklist/project/ProjectService.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ public interface ProjectService {
1010

1111
//TODO: #245 change List<Project> to Page<Project>
1212
@Deprecated
13-
// List<Project> findRootProjectsByContext(Context context);
13+
List<Project> findRootProjectsByContext(Context context);
1414
Page<Project> findRootProjectsByContext(Context context, Pageable pageRequest);
1515

1616
//TODO: #245 change List<Project> to Page<Project>
1717
@Deprecated
18-
// List<Project> findAllProjectsByContext(Context context);
18+
List<Project> findAllProjectsByContext(Context context);
1919
Page<Project> findAllProjectsByContext(Context context, Pageable pageRequest);
2020

2121
Project moveProjectToAnotherProject(Project thisProject, Project targetProject);

0 commit comments

Comments
 (0)