Skip to content

Commit 5267cac

Browse files
committed
HHH-19894 : Use Java 25 for building
1 parent 4a238e7 commit 5267cac

File tree

1 file changed

+2
-5
lines changed
  • hibernate-core/src/main/java/org/hibernate/annotations

1 file changed

+2
-5
lines changed

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

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,13 @@
77
import java.lang.annotation.Retention;
88
import java.lang.annotation.Target;
99

10-
import java.util.List;
11-
import org.hibernate.metamodel.CollectionClassification;
12-
1310
import static java.lang.annotation.ElementType.ANNOTATION_TYPE;
1411
import static java.lang.annotation.ElementType.FIELD;
1512
import static java.lang.annotation.ElementType.METHOD;
1613
import static java.lang.annotation.RetentionPolicy.RUNTIME;
1714

18-
/// Specifies that an attribute of type [List] is semantically a
19-
/// [bag][CollectionClassification#BAG], that is, that the order of
15+
/// Specifies that an attribute of type [java.util.List] is semantically a
16+
/// [bag][org.hibernate.metamodel.CollectionClassification#BAG] - that the order of
2017
/// the list elements is not significant, and should not be persistent.
2118
///
2219
/// This annotation is not necessary, and has no effect, unless the configuration

0 commit comments

Comments
 (0)