-
Notifications
You must be signed in to change notification settings - Fork 92
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Upgrade to Hibernate ORM 6.2.4.Final #1647
Conversation
|
||
public InsertActionSorter() { | ||
} | ||
|
||
/** | ||
* Sort the insert actions. | ||
*/ | ||
public void sort(List<ReactiveEntityInsertAction> insertions) { | ||
public void sort(List<ReactiveEntityInsertActionHolder> insertions) { |
Check notice
Code scanning / CodeQL
Missing Override annotation
actionDelegate.getSession() | ||
.getFactory() | ||
.getMetamodel() | ||
.entityPersister( action.getEntityName() ) | ||
.entityPersister( actionDelegate.getEntityName() ) |
Check notice
Code scanning / CodeQL
Deprecated method or constructor invocation
import org.hibernate.event.spi.EventSource; | ||
import org.hibernate.reactive.engine.ReactiveExecutable; | ||
|
||
public final class ReactiveEntityInsertActionHolder implements Executable, ReactiveExecutable, ComparableExecutable, |
Check warning
Code scanning / CodeQL
Inconsistent compareTo
No description provided.