Skip to content

Commit ceba33d

Browse files
asashourmbellade
authored andcommitted
HHH-19858 fix JavaDoc warnings
1 parent f36b06c commit ceba33d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

hibernate-core/src/main/java/org/hibernate/annotations/OnDelete.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
* <pre>
6565
* &#064;OneToMany(mappedBy = Child_.parent, cascade = {PERSIST, REMOVE})
6666
* &#064;OnDelete(action = CASCADE)
67-
* Set&lt;Child&gt; children = new HashSet<>();
67+
* Set&lt;Child&gt; children = new HashSet&lt;&gt;();
6868
* </pre>
6969
* This mapping looks redundant, but it's not.
7070
* <ul>

hibernate-core/src/main/java/org/hibernate/type/format/JsonDocumentReader.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
* Calling #next() will return one of a JsonDocumentItem.JsonDocumentItemType.
1818
* The sequence of return types follows JSON specification.
1919
* <p>
20-
* When {@link JsonDocumentItemType.VALUE_KEY} is returned #getObjectKeyName() should be called to get the key name.
20+
* When {@link JsonDocumentItemType#VALUE_KEY} is returned #getObjectKeyName() should be called to get the key name.
2121
* <p>
22-
* When {@link JsonDocumentItemType.VALUE}, {@link JsonDocumentItemType.BOOLEAN_VALUE}, {@link JsonDocumentItemType.NULL_VALUE} or {@link JsonDocumentItemType.NUMERIC_VALUE} is returned one of the getxxxValue() should be called to get the value.
22+
* When {@link JsonDocumentItemType#VALUE}, {@link JsonDocumentItemType#BOOLEAN_VALUE}, {@link JsonDocumentItemType#NULL_VALUE} or {@link JsonDocumentItemType#NUMERIC_VALUE} is returned one of the getxxxValue() should be called to get the value.
2323
* <p>
2424
* example :
2525
* <pre>

0 commit comments

Comments
 (0)