Skip to content

Commit a87da52

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 6cd4dc5 commit a87da52

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
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/support/Neo4jRepositoryFactoryCdiBean.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@
3434
/**
3535
* The CDI pendant to the {@link Neo4jRepositoryFactoryBean}. It creates instances of {@link Neo4jRepositoryFactory}.
3636
*
37-
* @param <T> The type of the repository being created
3837
* @author Michael J. Simons
38+
* @param <T> The type of the repository being created
3939
* @soundtrack Various - TRON Legacy R3conf1gur3d
4040
* @since 6.0
4141
*/

src/test/java/org/springframework/data/neo4j/integration/shared/common/DynamicRelationshipsITBase.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
/**
2929
* Make sure that dynamic relationships can be loaded and stored.
3030
*
31-
* @param <T> Type of the person with relatives
3231
* @author Michael J. Simons
32+
* @param <T> Type of the person with relatives
3333
* @soundtrack Helge Schneider - Live At The Grugahalle
3434
*/
3535
@Neo4jIntegrationTest

0 commit comments

Comments
 (0)