-
Notifications
You must be signed in to change notification settings - Fork 375
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
Change Compile to skip trying to load a previously compiled class #76
Milestone
Comments
Hmm, this is only asking for |
Any work around to remove previously loaded class, so that latest changes gets compiled |
Yes, use the underlying |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When compiling a new class, the current behaviour of first checking whether the previously loaded class already exists and loading that again is probably not what people expect, see the example here: #72
In addition to that, it's not easy to guarantee this contract across several JDK versions. It was somewhat possible in JDK 8, but not in JDK 9+.
We'll introduce this breaking change and re-compile all classes every time
The text was updated successfully, but these errors were encountered: