HHH-17061 Remove getSubclassJoinClosureIterator

This commit is contained in:
Sanne Grinovero 2023-08-09 12:11:01 +02:00 committed by Sanne Grinovero
parent be19f1547d
commit 1a4be30a70
1 changed files with 0 additions and 5 deletions

View File

@ -386,11 +386,6 @@ public abstract class PersistentClass implements IdentifiableTypeClass, Attribut
return new JoinedList<>( lists );
}
@Deprecated(since = "6.0") @Remove
public Iterator<Join> getSubclassJoinClosureIterator() {
return new JoinedIterator<>( getJoinClosureIterator(), subclassJoins.iterator() );
}
public List<Join> getSubclassJoinClosure() {
return new JoinedList<>( getJoinClosure(), subclassJoins );
}