From 439c6d777492a28fd0a471f3c4cdee23e3039b73 Mon Sep 17 00:00:00 2001 From: Tom Vahlman <tom@dsv.su.se> Date: Sat, 14 Apr 2012 11:23:09 +0200 Subject: [PATCH] The sorting SQL:s now returns the same number of employees when sorting on keyword as returned when sorting on last name. --- .../se/su/dsv/scipro/springdata/services/SupervisorService.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/main/java/se/su/dsv/scipro/springdata/services/SupervisorService.java b/src/main/java/se/su/dsv/scipro/springdata/services/SupervisorService.java index 1b732dc1e3..a81eb5bf38 100644 --- a/src/main/java/se/su/dsv/scipro/springdata/services/SupervisorService.java +++ b/src/main/java/se/su/dsv/scipro/springdata/services/SupervisorService.java @@ -20,7 +20,5 @@ public interface SupervisorService extends CrudService<Employee,Long>, QueryServ public List<Employee> findSupervisorsOrderedByNumKeywordsAscending(String keywordTypeName); -// public List<Employee> findSupervisorsOrderedByNumKeywords(String keywordTypeName, Sort.Direction sortDirection); - public List<Employee> findSupervisorBySQL(String keywordTypeName, String sortOrder); }