Skip to content

Commit 6f10957

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 15387cb commit 6f10957

15 files changed

+15
-15
lines changed

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

+1-1
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
/**
2323
* This interface represents a pair of methods capable of converting values of type {@code T} to and from {@link Value values}.
2424
*
25-
* @param <T> The type of the property to convert (the type of the actual attribute).
2625
* @author Michael J. Simons
26+
* @param <T> The type of the property to convert (the type of the actual attribute).
2727
* @soundtrack Antilopen Gang - Adrenochrom
2828
* @since 6.0
2929
*/

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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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
*/

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

+1-1
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/main/java/org/springframework/data/neo4j/repository/support/ReactiveCypherdslStatementExecutor.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
* way in contrast to provide custom queries declaratively via {@link org.springframework.data.neo4j.repository.query.Query @Query}
2828
* annotations.
2929
*
30-
* @param <T> The domain type of the repository
3130
* @author Michael J. Simons
31+
* @param <T> The domain type of the repository
3232
* @soundtrack Queen - Queen On Air
3333
* @since 6.1
3434
*/

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@
4242
* @author Michael J. Simons
4343
* @author Ján Šúr
4444
* @author Jens Schauder
45-
* @since 6.0
4645
* @param <T> the type of the domain class managed by this repository
4746
* @param <ID> the type of the unique identifier of the domain class
47+
* @since 6.0
4848
*/
4949
@Repository
5050
@Transactional(readOnly = true)

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@
4141
* @author Gerrit Meier
4242
* @author Michael J. Simons
4343
* @author Jens Schauder
44-
* @since 6.0
4544
* @param <T> the type of the domain class managed by this repository
4645
* @param <ID> the type of the unique identifier of the domain class
46+
* @since 6.0
4747
*/
4848
@Repository
4949
@Transactional(readOnly = true)

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929
/**
3030
* Make sure that dynamic relationships can be loaded and stored.
3131
*
32-
* @param <T> Type of the person with relatives
3332
* @author Michael J. Simons
33+
* @param <T> Type of the person with relatives
3434
* @soundtrack Helge Schneider - Live At The Grugahalle
3535
*/
3636
@Neo4jIntegrationTest

0 commit comments

Comments
 (0)