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

8336267: Method and Constructor signature parsing can be shared on the root object #20179

Closed
wants to merge 6 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/java.base/share/classes/java/lang/reflect/Method.java
Original file line number Diff line number Diff line change
@@ -93,8 +93,8 @@ public final class Method extends Executable {
private Method root;
private transient volatile MethodRepository genericInfo;
private @Stable MethodAccessor methodAccessor;
private int hash; // not shared right now, eligible if expensive
// End shared states
private int hash; // not shared right now, eligible if expensive

// Generics infrastructure
private String getGenericSignature() {return signature;}