Skip to content

Commit d6a8e79

Browse files
michael-simonsmeistermeier
authored andcommitted
GH-2394 Fix invalid Javadoc tags and references.
See #2394
1 parent bc38a56 commit d6a8e79

File tree

4 files changed

+6
-8
lines changed

4 files changed

+6
-8
lines changed

src/main/java/org/springframework/data/neo4j/config/Builtin.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@
2727
* An internally used CDI {@link Qualifier} to mark all beans produced by our
2828
* {@link Neo4jCdiConfigurationSupport configuration support} as built in.
2929
* When the {@link Neo4jCdiExtension Spring Data Neo4j CDI extension} is used,
30-
* you can opt in to override any of the following beans by providing a {@link javax.enterprise.inject.Produces @Produces} method with the
30+
* you can opt in to override any of the following beans by providing a {@link jakarta.enterprise.inject.Produces @Produces} method with the
3131
* corresponding return type:
3232
* <ul>
3333
* <li>{@link org.springframework.data.neo4j.core.convert.Neo4jConversions}</li>
3434
* <li>{@link org.springframework.data.neo4j.core.DatabaseSelectionProvider}</li>
35-
* <li>{@link org.springframework.data.neo4j.core.Neo4jOperations}</li>*
35+
* <li>{@link org.springframework.data.neo4j.core.Neo4jOperations}</li>
3636
* </ul>
3737
* The order in which the types are presented reflects the usefulness over overriding such a bean.
3838
* You might want to add additional conversions to the mapping or provide a bean that dynamically selects a Neo4j database.

src/main/java/org/springframework/data/neo4j/config/Neo4jCdiExtension.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@
3737
/**
3838
* This CDI extension enables Spring Data Neo4j on a CDI 2.0 compatible CDI container. It creates a Neo4j client, template
3939
* and brings in the Neo4j repository mechanism as well. It is the main entry point to our CDI support.
40-
* <p/>
40+
* <p>
4141
* It requires the presence of a Neo4j Driver bean. Other beans, like the {@link org.springframework.data.neo4j.core.convert.Neo4jConversions}
42-
* can be overwritten by providing a producer of it. If such a producer or bean is added, it must not use any {@link javax.inject.Qualifier @Qualifier}
42+
* can be overwritten by providing a producer of it. If such a producer or bean is added, it must not use any {@link jakarta.inject.Qualifier @Qualifier}
4343
* on the bean.
44-
* <p/>
44+
* <p>
4545
* This CDI extension can be used either via a build in service loader mechanism or through building a context manually.
4646
*
4747
* @author Michael J. Simons

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@
2828
* This marker interface is used on classes to mark that they represent additional relationship properties. A class that
2929
* implements this interface must not be used as a or annotated with {@link Node}. It must however have exactly one field
3030
* of type `Long` annotated with `@Id @GeneratedValue` such as this:
31-
* <p>
32-
* <p>
31+
*
3332
* <pre>
3433
* &#064;RelationshipProperties
3534
* public class Roles {

src/main/java/org/springframework/data/neo4j/core/transaction/Neo4jBookmarkManager.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ public static Neo4jBookmarkManager create() {
5050
* <p>
5151
* While this class will make sure that the supplier will be accessed in a thread-safe manner,
5252
* it is the caller's duty to provide a thread safe supplier (not changing the seed during a call, etc.).
53-
* <p>
5453
*
5554
* @param bookmarksSupplier A supplier for seeding bookmarks, can be null. The supplier is free to provide different
5655
* bookmarks on each call.

0 commit comments

Comments
 (0)