Skip to content

Commit f13a542

Browse files
committed
Follow through with the split of CRUD repository and sorting repository.
Closes #570 See spring-projects/spring-data-commons#2537
1 parent 1f4395c commit f13a542

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

spring-data-geode/src/main/java/org/springframework/data/gemfire/repository/GemfireRepository.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
*/
1616
package org.springframework.data.gemfire.repository;
1717

18+
import org.springframework.data.repository.CrudRepository;
1819
import org.springframework.data.repository.PagingAndSortingRepository;
1920

2021
/**
@@ -24,7 +25,7 @@
2425
* @author John Blum
2526
* @see org.springframework.data.repository.PagingAndSortingRepository
2627
*/
27-
public interface GemfireRepository<T, ID> extends PagingAndSortingRepository<T, ID> {
28+
public interface GemfireRepository<T, ID> extends CrudRepository<T, ID>, PagingAndSortingRepository<T, ID> {
2829

2930
/**
3031
* Save the entity wrapped by the given {@link Wrapper}.

0 commit comments

Comments
 (0)