DATACMNS-1073 - Remove unnecessary generics from PagingAndSortingRepository.findAll(Pageable).

Original pull request: #220.
This commit is contained in:
Christian Wiejack
2017-05-23 16:57:17 +02:00
committed by Oliver Gierke
parent dc30810936
commit 13907152fb

View File

@@ -45,5 +45,5 @@ public interface PagingAndSortingRepository<T, ID> extends CrudRepository<T, ID>
* @param pageable
* @return a page of entities
*/
<S extends Sort> Page<T> findAll(Pageable pageable);
Page<T> findAll(Pageable pageable);
}