Branch: refs/heads/6.2
Home:
https://github.com/hibernate/hibernate-orm
Commit: 41d9d82f24cde9e74c7aafe702fe5045bd1ca9d9
https://github.com/hibernate/hibernate-orm/commit/41d9d82f24cde9e74c7aafe...
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>