Corrected generics in MongoRepository.

This commit is contained in:
Oliver Gierke
2011-01-02 14:19:22 +01:00
parent b975546b55
commit f61a306f80

View File

@@ -27,6 +27,6 @@ import org.springframework.data.repository.Repository;
* @author Oliver Gierke * @author Oliver Gierke
*/ */
public interface MongoRepository<T, ID extends Serializable> extends public interface MongoRepository<T, ID extends Serializable> extends
PagingAndSortingRepository<T, Serializable> { PagingAndSortingRepository<T, ID> {
} }