Skip to content

Commit 5434cc2

Browse files
Fix broken build due to update to Checkstyle 8.45.1.
See spring-projects/spring-data-build@b1c70ee Checkstyle now thinks different about the order of tags on classes.
1 parent f851969 commit 5434cc2

15 files changed

+15
-15
lines changed

src/main/java/org/springframework/data/neo4j/core/PreparedQuery.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@
5050
* that the query fits to the mapping function, that is: It must return all nodes, relationships and paths that is
5151
* expected by the mapping function to work correctly.
5252
*
53-
* @param <T> The type of the objects returned by this query.
5453
* @author Michael J. Simons
5554
* @author Gerrit Meier
55+
* @param <T> The type of the objects returned by this query.
5656
* @soundtrack Deichkind - Arbeit nervt
5757
* @since 6.0
5858
*/

src/main/java/org/springframework/data/neo4j/core/convert/Neo4jPersistentPropertyConverter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
/**
2222
* This interface represents a pair of methods capable of converting values of type {@code T} to and from {@link Value values}.
2323
*
24-
* @param <T> The type of the property to convert (the type of the actual attribute).
2524
* @author Michael J. Simons
25+
* @param <T> The type of the property to convert (the type of the actual attribute).
2626
* @soundtrack Antilopen Gang - Adrenochrom
2727
* @since 6.0
2828
*/

src/main/java/org/springframework/data/neo4j/core/convert/Neo4jPersistentPropertyToMapConverter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@
2828
* <p>The calling mechanism will take care of adding and removing configured prefixes and transforming keys and values into
2929
* something that Neo4j can understand.
3030
*
31+
* @author Michael J. Simons
3132
* @param <K> The type of the keys (Only Strings and Enums are supported).
3233
* @param <P> The type of the property.
33-
* @author Michael J. Simons
3434
* @soundtrack Metallica - Helping Hands… Live & Acoustic At The Masonic
3535
* @since 6.0
3636
*/

src/main/java/org/springframework/data/neo4j/core/mapping/NodeDescription.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929
* Describes how a class is mapped to a node inside the database. It provides navigable links to relationships and
3030
* access to the nodes properties.
3131
*
32-
* @param <T> The type of the underlying class
3332
* @author Michael J. Simons
33+
* @param <T> The type of the underlying class
3434
* @since 6.0
3535
*/
3636
@API(status = API.Status.STABLE, since = "6.0")

src/main/java/org/springframework/data/neo4j/core/mapping/callback/ReactiveBeforeBindCallback.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
* Entity callback triggered before an Entity is bound to a record (represented by a {@link java.util.Map
2727
* java.util.Map&lt;String, Object&gt;}).
2828
*
29-
* @param <T> The type of the entity.
3029
* @author Michael J. Simons
30+
* @param <T> The type of the entity.
3131
* @soundtrack Iron Maiden - Killers
3232
* @see ReactiveEntityCallbacks
3333
* @since 6.0.2

src/main/java/org/springframework/data/neo4j/core/schema/IdGenerator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
/**
2121
* Interface for generating ids for entities.
2222
*
23-
* @param <T> Type of the id to generate
2423
* @author Michael J. Simons
24+
* @param <T> Type of the id to generate
2525
* @since 6.0
2626
*/
2727
@FunctionalInterface

src/main/java/org/springframework/data/neo4j/repository/query/CypherdslConditionExecutorImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@
4040
import org.springframework.data.support.PageableExecutionUtils;
4141

4242
/**
43-
* @param <T> The returned domain type.
4443
* @author Michael J. Simons
44+
* @param <T> The returned domain type.
4545
* @since 6.1
4646
*/
4747
@API(status = API.Status.INTERNAL, since = "6.1")

src/main/java/org/springframework/data/neo4j/repository/query/QuerydslNeo4jPredicateExecutor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@
3939
* to the Cypher-DSL and eventually to the template infrastructure. This fragment will be loaded by the repository
4040
* infrastructure when
4141
*
42-
* @param <T> The returned domain type.
4342
* @author Michael J. Simons
43+
* @param <T> The returned domain type.
4444
* @soundtrack Various - Chef Aid: The South Park Album
4545
* @since 6.1
4646
*/

src/main/java/org/springframework/data/neo4j/repository/support/CypherdslConditionExecutor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929
* An interface that can be added to any repository so that queries can be enriched by {@link Condition conditions} of the
3030
* Cypher-DSL. This interface behaves the same like the {@link org.springframework.data.querydsl.QuerydslPredicateExecutor}.
3131
*
32-
* @param <T> Type of the domain
3332
* @author Michael J. Simons
33+
* @param <T> Type of the domain
3434
* @since 6.1
3535
*/
3636
@API(status = API.Status.STABLE, since = "6.1")

src/main/java/org/springframework/data/neo4j/repository/support/CypherdslStatementExecutor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
* way in contrast to provide custom queries declaratively via {@link org.springframework.data.neo4j.repository.query.Query @Query}
3131
* annotations.
3232
33-
* @param <T> The domain type of the repository
3433
* @author Michael J. Simons
34+
* @param <T> The domain type of the repository
3535
* @soundtrack Queen - Queen On Air
3636
* @since 6.1
3737
*/

0 commit comments

Comments
 (0)