We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Starting with Java 20, instantiating URLs via new URL is deprecated in favor of URI#toURL().
new URL
URI#toURL()
While the project's codebase targets Java 17, we can address backwards-compatible deprecations still.
The files of concern are the following: https://github.com/search?q=repo%3AIntellectualSites%2FPlotSquared%20%22new%20URL%22&type=code
More information about the deprecation can be found in the javadocs and constructor deprecation.
The text was updated successfully, but these errors were encountered:
Address deprecated URL instantiation (#4178)
4fe0c58
Fixes #4166
1e4ae67
Successfully merging a pull request may close this issue.
Starting with Java 20, instantiating URLs via
new URL
is deprecated in favor ofURI#toURL()
.While the project's codebase targets Java 17, we can address backwards-compatible deprecations still.
The files of concern are the following: https://github.com/search?q=repo%3AIntellectualSites%2FPlotSquared%20%22new%20URL%22&type=code
More information about the deprecation can be found in the javadocs and constructor deprecation.
The text was updated successfully, but these errors were encountered: