Skip to content
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

Include class hash in hash for operation methods #1007

Merged
merged 2 commits into from
Dec 21, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ default Optional<Operation> processOperation(final AnnotationScannerContext cont
operation = new OperationImpl();
}

operation.setMethodRef(JandexUtil.createUniqueMethodReference(method));
operation.setMethodRef(JandexUtil.createUniqueMethodReference(resourceClass, method));

OperationIdStrategy operationIdStrategy = context.getConfig().getOperationIdStrategy();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ public static RefType fromComponentPath(String path) {
private JandexUtil() {
}

public static String createUniqueMethodReference(MethodInfo methodInfo) {
return "" + methodInfo.hashCode();
public static String createUniqueMethodReference(ClassInfo classInfo, MethodInfo methodInfo) {
return "" + classInfo.hashCode() + "_" + methodInfo.hashCode();
}

/**
Expand Down