DATACMNS-1073 - Remove unnecessary generics from PagingAndSortingRepository.findAll(Pageable).
Original pull request: #220.
This commit is contained in:
committed by
Oliver Gierke
parent
dc30810936
commit
13907152fb
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user