Skip to content

Commit b3e6052

Browse files
authored
Merge branch 'main' into HHH-19208
2 parents cb23f84 + c64e3b9 commit b3e6052

File tree

68 files changed

+416
-4135
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+416
-4135
lines changed

hibernate-core/src/main/java/org/hibernate/MultiIdentifierLoadAccess.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ default MultiIdentifierLoadAccess<T> with(RootGraph<T> graph) {
170170
/**
171171
* Should {@link #multiLoad} return entity instances that have been
172172
* {@linkplain Session#remove(Object) marked for removal} in the
173-
* current session, but not yet {@code delete}d in the database?
173+
* current session, but not yet deleted in the database?
174174
* <p>
175175
* By default, instances marked for removal are replaced by null in
176176
* the returned list of entities when {@link #enableOrderedReturn}

hibernate-core/src/main/java/org/hibernate/NaturalIdMultiLoadAccess.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ default NaturalIdMultiLoadAccess<T> with(RootGraph<T> graph) {
116116
/**
117117
* Should {@link #multiLoad} return entity instances that have been
118118
* {@link Session#remove(Object) marked for removal} in the current
119-
* session, but not yet {@code delete}d in the database?
119+
* session, but not yet deleted in the database?
120120
* <p>
121121
* By default, instances marked for removal are replaced by null in
122122
* the returned list of entities when {@link #enableOrderedReturn}

hibernate-core/src/main/java/org/hibernate/engine/spi/CascadingAction.java

-30
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@
88

99
import org.hibernate.HibernateException;
1010
import org.hibernate.event.spi.EventSource;
11-
import org.hibernate.persister.entity.EntityPersister;
1211
import org.hibernate.type.CollectionType;
13-
import org.hibernate.type.Type;
1412

1513
/**
1614
* A session action that may be cascaded from parent entity to its children
@@ -58,34 +56,6 @@ Iterator<?> getCascadableChildrenIterator(
5856
*/
5957
boolean deleteOrphans();
6058

61-
62-
/**
63-
* Does the specified cascading action require verification of no cascade validity?
64-
*
65-
* @return True if this action requires no-cascade verification; false otherwise.
66-
*
67-
* @deprecated No longer used
68-
*/
69-
@Deprecated(since = "6.6", forRemoval = true)
70-
default boolean requiresNoCascadeChecking() {
71-
return false;
72-
}
73-
74-
/**
75-
* Called (in the case of {@link #requiresNoCascadeChecking} returning true) to validate
76-
* that no cascade on the given property is considered a valid semantic.
77-
*
78-
* @param session The session within which the cascade is occurring.
79-
* @param parent The property value owner
80-
* @param persister The entity persister for the owner
81-
* @param propertyType The property type
82-
* @param propertyIndex The index of the property within the owner.
83-
*
84-
* @deprecated No longer used
85-
*/
86-
@Deprecated(since = "6.6", forRemoval = true)
87-
default void noCascade(EventSource session, Object parent, EntityPersister persister, Type propertyType, int propertyIndex) {}
88-
8959
/**
9060
* Should this action be performed (or noCascade consulted) in the case of lazy properties.
9161
*/

hibernate-core/src/main/java/org/hibernate/query/sqm/mutation/internal/inline/InlineDeleteHandler.java

-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@
4040
/**
4141
* DeleteHandler for the in-line strategy
4242
*
43-
* @author Evandro Pires da Silva
4443
* @author Vlad Mihalcea
4544
* @author Steve Ebersole
4645
*/

hibernate-core/src/test/java/org/hibernate/orm/test/annotations/collectionelement/recreate/Poi.java

-49
This file was deleted.

hibernate-core/src/test/java/org/hibernate/orm/test/annotations/collectionelement/recreate/PoiArrival.java

-40
This file was deleted.

hibernate-core/src/test/java/org/hibernate/orm/test/annotations/collectionelement/recreate/RaceExecution.java

-75
This file was deleted.

hibernate-core/src/test/java/org/hibernate/orm/test/annotations/collectionelement/recreate/RecreateCollectionTest.java

-81
This file was deleted.

hibernate-core/src/test/java/org/hibernate/orm/test/annotations/join/namingstrategy/Life.java

-35
This file was deleted.

0 commit comments

Comments
 (0)