mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-07 11:48:18 +00:00
HHH-17057 Remove PersistentClass#getNonDuplicatedPropertyIterator
This commit is contained in:
parent
524e36ed87
commit
63473e99cd
@ -1043,11 +1043,6 @@ public void setAbstract(Boolean isAbstract) {
|
||||
this.isAbstract = isAbstract;
|
||||
}
|
||||
|
||||
@Deprecated(since = "6.0")
|
||||
protected Iterator<Property> getNonDuplicatedPropertyIterator() {
|
||||
return getUnjoinedPropertyIterator();
|
||||
}
|
||||
|
||||
protected List<Property> getNonDuplicatedProperties() {
|
||||
return getUnjoinedProperties();
|
||||
}
|
||||
|
@ -28,14 +28,6 @@ public SingleTableSubclass(PersistentClass superclass, MetadataBuildingContext b
|
||||
super( superclass, buildingContext );
|
||||
}
|
||||
|
||||
@Deprecated @SuppressWarnings("deprecation")
|
||||
protected Iterator<Property> getNonDuplicatedPropertyIterator() {
|
||||
return new JoinedIterator<>(
|
||||
getSuperclass().getUnjoinedPropertyIterator(),
|
||||
getUnjoinedPropertyIterator()
|
||||
);
|
||||
}
|
||||
|
||||
protected List<Property> getNonDuplicatedProperties() {
|
||||
return new JoinedList<>( getSuperclass().getUnjoinedProperties(), getUnjoinedProperties() );
|
||||
}
|
||||
|
@ -37,11 +37,6 @@ public java.util.Set<String> getSynchronizedTables() {
|
||||
return synchronizedTables;
|
||||
}
|
||||
|
||||
@Deprecated @SuppressWarnings("deprecation")
|
||||
protected Iterator<Property> getNonDuplicatedPropertyIterator() {
|
||||
return getPropertyClosureIterator();
|
||||
}
|
||||
|
||||
@Override
|
||||
protected List<Property> getNonDuplicatedProperties() {
|
||||
return getPropertyClosure();
|
||||
|
Loading…
x
Reference in New Issue
Block a user