Skip to content

Commit 5b7611e

Browse files
committed
Fixes JavaDoc problems.
See #2232
1 parent de4b9a7 commit 5b7611e

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

spring-data-jpa/src/main/java/org/springframework/data/jpa/repository/JpaRepository.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ default void deleteInBatch(Iterable<T> entities) {
141141
/**
142142
* Returns a reference to the entity with the given identifier. Depending on how the JPA persistence provider is
143143
* implemented this is very likely to always return an instance and throw an
144-
* {@link javax.persistence.EntityNotFoundException} on first access. Some of them will reject invalid identifiers
144+
* {@link jakarta.persistence.EntityNotFoundException} on first access. Some of them will reject invalid identifiers
145145
* immediately.
146146
*
147147
* @param id must not be {@literal null}.

spring-data-jpa/src/main/java/org/springframework/data/jpa/repository/query/QueryUtils.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,6 @@ public static String createCountQueryFor(String originalQuery) {
472472
* @param originalQuery must not be {@literal null}.
473473
* @param countProjection may be {@literal null}.
474474
* @return a query String to be used a count query for pagination. Guaranteed to be not {@literal null}.
475-
* @return a query String to be used a count query for pagination. Guaranteed to be not {@literal null}.
476475
* @since 1.6
477476
* @deprecated use {@link DeclaredQuery#deriveCountQuery(String, String)} instead.
478477
*/

0 commit comments

Comments
 (0)