-
Notifications
You must be signed in to change notification settings - Fork 5.6k
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
8274227: Remove "impl.prefix" jdk system property usage from InetAddress #5755
8274227: Remove "impl.prefix" jdk system property usage from InetAddress #5755
Conversation
👋 Welcome back aefimov! A progress list of the required criteria for merging this PR into |
@AlekseiEfimov The following label will be automatically applied to this pull request:
When this pull request is ready to be reviewed, an "RFR" email will be sent to the corresponding mailing list. If you would like to change these labels, use the /label pull request command. |
/csr |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks fine. I've added the CSR label as I think we should create a CSR to track this removal (it was completely undocumented/unsupported and also required adding classes to java.base/java.net so there should be no issue).
@AlanBateman this pull request will not be integrated until the CSR request JDK-8274230 for issue JDK-8274227 has been approved. |
LGTM too. Good to see this old code go away! |
@AlekseiEfimov This change now passes all automated pre-integration checks. ℹ️ This project also has non-automated pre-integration requirements. Please see the file CONTRIBUTING.md for details. After integration, the commit message for the final commit will be:
You can use pull request commands such as /summary, /contributor and /issue to adjust it as needed. At the time when this comment was updated there had been 26 new commits pushed to the
As there are no conflicts, your changes will automatically be rebased on top of these commits when integrating. If you prefer to avoid this automatic rebasing, please check the documentation for the /integrate command for further details. ➡️ To integrate this PR with the above commit message to the |
/integrate |
Going to push as commit cc14c6f.
Your commit was automatically rebased without conflicts. |
@AlekseiEfimov Pushed as commit cc14c6f. 💡 You may see a message that your pull request was closed with unmerged commits. This can be safely ignored. |
The following fix proposes to remove usages of
"impl.prefix"
JDK system property from thejava.net.InetAddress
class.This system property is used to locate concrete implementations of the package private "java.net.InetAddressImpl" interface.
The list of changes:
impl.prefix
usages are removedInetAddressImpl
made sealed interface by only allowing default implementations available in 'java.net' package:Inet4AddressImpl
andInet6AddressImpl
.tier1-tier3 tests show no failures with this fix.
Progress
Issue
Reviewers
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.java.net/jdk pull/5755/head:pull/5755
$ git checkout pull/5755
Update a local copy of the PR:
$ git checkout pull/5755
$ git pull https://git.openjdk.java.net/jdk pull/5755/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 5755
View PR using the GUI difftool:
$ git pr show -t 5755
Using diff file
Download this PR as a diff file:
https://git.openjdk.java.net/jdk/pull/5755.diff