-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
HHH-16572 - Incorrect enhancement for PROPERTY attributes with mismatched field and method names #6558
base: main
Are you sure you want to change the base?
Conversation
This first commit is mostly a rough copy of the Without big changes to |
...rnate-core/src/main/java/org/hibernate/bytecode/enhance/internal/bytebuddy/EnhancerImpl.java
Fixed
Show fixed
Hide fixed
...src/main/java/org/hibernate/bytecode/enhance/internal/bytebuddy/model/ModelSourceHelper.java
Fixed
Show fixed
Hide fixed
...rnate-core/src/main/java/org/hibernate/bytecode/enhance/internal/bytebuddy/EnhancerImpl.java
Fixed
Show fixed
Hide fixed
* @author Steve Ebersole | ||
*/ | ||
public class ManagedTypeDescriptorRegistryImpl implements ManagedTypeDescriptorRegistry { | ||
private final Map<String,ManagedTypeDescriptor> managedTypeDescriptorMap = new LinkedHashMap<>(); |
Check failure
Code scanning / CodeQL
Container contents are never initialized
@@ -224,7 +230,9 @@ | |||
return null; | |||
} | |||
|
|||
DynamicType.Builder<?> applyTo(DynamicType.Builder<?> builder) { | |||
DynamicType.Builder<?> applyTo(DynamicType.Builder<?> builder, ManagedTypeModelContext managedTypeModelContext) { | |||
final ManagedTypeDescriptor managedTypeDescriptor = managedTypeModelContext.getDescriptorRegistry().resolveDescriptor( managedCtClass.getName() ); |
Check notice
Code scanning / CodeQL
Unread local variable
return existing; | ||
} | ||
|
||
final ClassDetails classDetails = modelContext.getModelProcessingContext().getClassDetailsRegistry().resolveClassDetails( name ); |
Check notice
Code scanning / CodeQL
Unread local variable
https://hibernate.atlassian.net/browse/HHH-16572