HHH-17061 Remove getPropertyClosureIterator
This commit is contained in:
parent
e2ca0b74ee
commit
f42766e505
|
@ -382,9 +382,6 @@ public abstract class PersistentClass implements IdentifiableTypeClass, Attribut
|
|||
|
||||
public abstract List<Property> getPropertyClosure();
|
||||
|
||||
@Deprecated(since = "6.0") @Remove
|
||||
public abstract Iterator<Property> getPropertyClosureIterator();
|
||||
|
||||
public abstract List<Table> getTableClosure();
|
||||
|
||||
@Deprecated(since = "6.0") @Remove
|
||||
|
|
|
@ -131,11 +131,6 @@ public class RootClass extends PersistentClass implements TableOwner {
|
|||
return this;
|
||||
}
|
||||
|
||||
@Override @Deprecated
|
||||
public Iterator<Property> getPropertyClosureIterator() {
|
||||
return getPropertyIterator();
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<Property> getPropertyClosure() {
|
||||
return getProperties();
|
||||
|
|
|
@ -130,14 +130,6 @@ public class Subclass extends PersistentClass {
|
|||
return new JoinedList<>( getSuperclass().getPropertyClosure(), getProperties() );
|
||||
}
|
||||
|
||||
@Deprecated @Override
|
||||
public Iterator<Property> getPropertyClosureIterator() {
|
||||
return new JoinedIterator<>(
|
||||
getSuperclass().getPropertyClosureIterator(),
|
||||
getPropertyIterator()
|
||||
);
|
||||
}
|
||||
|
||||
@Deprecated @Override
|
||||
public Iterator<Table> getTableClosureIterator() {
|
||||
return new JoinedIterator<>(
|
||||
|
|
Loading…
Reference in New Issue