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

Support Java 17 #6

Closed
dzikoysk opened this issue Apr 21, 2021 · 2 comments
Closed

Support Java 17 #6

dzikoysk opened this issue Apr 21, 2021 · 2 comments
Labels
wontfix This will not be worked on

Comments

@dzikoysk
Copy link

No description provided.

@CDFN CDFN added the wontfix This will not be worked on label Apr 21, 2021
@CDFN
Copy link
Owner

CDFN commented Apr 21, 2021

unsafe goes brr

If someone would ever wonder why this won't work on latest versions:

private static Unsafe unsafe;
static {
try {
var field = Unsafe.class.getDeclaredField("theUnsafe");
field.setAccessible(true);
unsafe = (Unsafe) field.get(null);
} catch (NoSuchFieldException | IllegalAccessException e) {
e.printStackTrace();
}
}

@CDFN CDFN pinned this issue Apr 21, 2021
@CDFN CDFN closed this as completed May 13, 2021
@dzikoysk
Copy link
Author

Gościu

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
wontfix This will not be worked on
Projects
None yet
Development

No branches or pull requests

2 participants