From 0a5d9f293dc23cb6d4be3eac9a4aadcc7d19f969 Mon Sep 17 00:00:00 2001 From: Sanne Grinovero Date: Wed, 9 Aug 2023 15:44:13 +0200 Subject: [PATCH] HHH-17061 Amend javadoc of PersistentClass#getProperties --- .../src/main/java/org/hibernate/mapping/PersistentClass.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hibernate-core/src/main/java/org/hibernate/mapping/PersistentClass.java b/hibernate-core/src/main/java/org/hibernate/mapping/PersistentClass.java index 7b233fdf4f..989dfa5a89 100644 --- a/hibernate-core/src/main/java/org/hibernate/mapping/PersistentClass.java +++ b/hibernate-core/src/main/java/org/hibernate/mapping/PersistentClass.java @@ -785,13 +785,13 @@ public abstract class PersistentClass implements IdentifiableTypeClass, Attribut * iterator only accounts for "normal" properties (i.e. non-identifier * properties). *

- * Differs from {@link #getUnjoinedProperties} in that the returned iterator + * Differs from {@link #getUnjoinedProperties} in that the returned list * will include properties defined as part of a join. *

* Differs from {@link #getReferenceableProperties} in that the properties * defined in superclasses of the mapping inheritance are not included. * - * @return An iterator over the "normal" properties. + * @return A list over the "normal" properties. */ public List getProperties() { final ArrayList> list = new ArrayList<>();