From aa5f7f86612d1c7ae5741731ff415742dc30ef25 Mon Sep 17 00:00:00 2001 From: Ryan Cloherty Date: Fri, 19 Feb 2021 16:48:29 -0500 Subject: [PATCH] Fixes raw use of JpaSpecificationExecutor in docs. `JpaSpecificationExecutor` was being used without a type being specified. This commit fixes that. Original pull request #2159 --- src/main/asciidoc/jpa.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/asciidoc/jpa.adoc b/src/main/asciidoc/jpa.adoc index 2bfc88864..718bb7c04 100644 --- a/src/main/asciidoc/jpa.adoc +++ b/src/main/asciidoc/jpa.adoc @@ -789,7 +789,7 @@ Spring Data JPA takes the concept of a specification from Eric Evans' book, "`Do [source, java] ---- -public interface CustomerRepository extends CrudRepository, JpaSpecificationExecutor { +public interface CustomerRepository extends CrudRepository, JpaSpecificationExecutor { … } ----