Skip to content

Commit 3bd79a8

Browse files
committed
Remove stray includes
1 parent 71d315c commit 3bd79a8

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

modules/ROOT/pages/repositories/query-methods-details.adoc

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -127,8 +127,6 @@ List<Person> findByAddress_ZipCode(ZipCode zipCode);
127127

128128
Because we treat the underscore character as a reserved character, we strongly advise following standard Java naming conventions (that is, not using underscores in property names but using camel case instead).
129129

130-
include:../:repositories-paging-sorting.adoc[]
131-
132130
[[repositories.collections-and-iterables]]
133131
== Repository Methods Returning Collections or Iterables
134132

@@ -260,8 +258,6 @@ try (Stream<User> stream = repository.findAllByCustomQueryAndStream()) {
260258

261259
NOTE: Not all Spring Data modules currently support `Stream<T>` as a return type.
262260

263-
include:../:repositories-null-handling.adoc[]
264-
265261
[[repositories.query-async]]
266262
== Asynchronous Query Results
267263

modules/ROOT/pages/repository-projections.adoc

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -246,10 +246,6 @@ Java Records are ideal to define DTO types since they adhere to value semantics:
246246
All fields are `private final` and ``equals(…)``/``hashCode()``/``toString()`` methods are created automatically.
247247
Alternatively, you can use any class that defines the properties you want to project.
248248

249-
ifdef::repository-projections-trailing-dto-fragment[]
250-
include::{repository-projections-trailing-dto-fragment}[]
251-
endif::[]
252-
253249
[[projection.dynamic]]
254250
== Dynamic Projections
255251

0 commit comments

Comments
 (0)