From 4cd4c9f6f9d1378d182e5b21cf22413774e8cf60 Mon Sep 17 00:00:00 2001 From: "asker.khakh" Date: Tue, 19 Nov 2019 10:29:53 +0300 Subject: [PATCH] DATACMNS-1603 - Polishing. Removed confusing sentence in repository reference documentation. Original pull request: #418. --- src/main/asciidoc/repositories.adoc | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/main/asciidoc/repositories.adoc b/src/main/asciidoc/repositories.adoc index 1daf7acf5..649eff435 100644 --- a/src/main/asciidoc/repositories.adoc +++ b/src/main/asciidoc/repositories.adoc @@ -768,8 +768,6 @@ interface CustomizedUserRepository { ---- ==== -Then you can let your repository interface additionally extend from the fragment interface, as shown in the following example: - .Implementation of custom repository functionality ==== [source, java] @@ -787,7 +785,7 @@ NOTE: The most important part of the class name that corresponds to the fragment The implementation itself does not depend on Spring Data and can be a regular Spring bean. Consequently, you can use standard dependency injection behavior to inject references to other beans (such as a `JdbcTemplate`), take part in aspects, and so on. -You can let your repository interface extend the fragment interface, as shown in the following example: +Then you can let your repository interface extend the fragment interface, as shown in the following example: .Changes to your repository interface ====