Skip to content

Commit 7f53944

Browse files
committed
Adapt to generics changes in CoroutineCrudRepository.
Closes spring-projects#3118
1 parent a9d2aaa commit 7f53944

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/kotlin/org/springframework/data/elasticsearch/repository/CoroutineElasticsearchRepository.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ import org.springframework.data.repository.kotlin.CoroutineSortingRepository
2424
* @since 5.2
2525
*/
2626
@NoRepositoryBean
27-
interface CoroutineElasticsearchRepository<T, ID> : CoroutineCrudRepository<T, ID>, CoroutineSortingRepository<T, ID>
27+
interface CoroutineElasticsearchRepository<T : Any, ID : Any> : CoroutineCrudRepository<T, ID>, CoroutineSortingRepository<T, ID>

0 commit comments

Comments
 (0)