-
Notifications
You must be signed in to change notification settings - Fork 96
Cleanups and sync with 6 #1589
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
Cleanups and sync with 6 #1589
Conversation
MutationExecutor executor = mutationExecutorService | ||
.createExecutor( this::getInsertBatchKey, operationGroup, session ); | ||
return (ReactiveMutationExecutor) executor; | ||
return (ReactiveMutationExecutor) mutationExecutorService.createExecutor( this::getInsertBatchKey, operationGroup, session ); |
Check notice
Code scanning / CodeQL
Deprecated method or constructor invocation
return reactiveInitializeLazyProperty( field.getName(), entity, session ); | ||
} | ||
|
||
default <E, T> CompletionStage<T> reactiveInitializeLazyProperty( |
Check notice
Code scanning / CodeQL
Missing Override annotation
String fieldName = field.getName(); | ||
Object result = initializeLazyProperty( fieldName, entity, session ); | ||
if (result instanceof CompletionStage) { | ||
default <E, T> CompletionStage<T> reactiveInitializeLazyProperty( |
Check notice
Code scanning / CodeQL
Missing Override annotation
// Since the loadedState in the EntityEntry is a flat domain type array | ||
// We first have to extract the component object and then ask the component type | ||
// recursively to give us the value of the sub-property of that object | ||
final Type propertyType = entry.getPersister().getPropertyType( componentPath.get(0) ); |
Check notice
Code scanning / CodeQL
Deprecated method or constructor invocation
No description provided.