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<>();