Branch: refs/heads/main
Home:
https://github.com/hibernate/hibernate-orm
Commit: 35da6000fd11f169d189fadb680e0c41e7230c27
https://github.com/hibernate/hibernate-orm/commit/35da6000fd11f169d189fad...
Author: Jan Schatteman <jschatte(a)redhat.com>
Date: 2023-05-24 (Wed, 24 May 2023)
Changed paths:
M hibernate-core/src/main/java/org/hibernate/Hibernate.java
M hibernate-core/src/main/java/org/hibernate/annotations/LazyCollection.java
M hibernate-core/src/main/java/org/hibernate/annotations/LazyCollectionOption.java
M
hibernate-core/src/main/java/org/hibernate/collection/spi/AbstractPersistentCollection.java
M hibernate-core/src/main/java/org/hibernate/collection/spi/PersistentBag.java
M hibernate-core/src/main/java/org/hibernate/collection/spi/PersistentList.java
M hibernate-core/src/main/java/org/hibernate/collection/spi/PersistentMap.java
M hibernate-core/src/main/java/org/hibernate/collection/spi/PersistentSet.java
M
hibernate-core/src/test/java/org/hibernate/orm/test/collection/basic/CollectionSizeTest.java
M hibernate-core/src/test/java/org/hibernate/orm/test/collection/basic/Contact.java
Log Message:
-----------
HHH-16649 - This commit effectively reverts d8bf6499 (HHH-15910), in which static remove
methods were added to the Hibernate class
The reason for this is that the methods in fact don't work, since the machinery
behind
them just isn't there, nor has it even been.
The CollectionSizeTest that was modified to test these new methods was
incomplete and hid this fact.
Signed-off-by: Jan Schatteman <jschatte(a)redhat.com>