Reputation: 4180
I installed 1.8.0_162-b12
in my local. When trying to see the source of the java core files in my eclipse, I don't see the source of classes under javax.net
.
On unzipping my src.zip
I see there are no files named net
under javax
, which means the source for javax.net.*
are not part of src.zip
.
Why are those not part of src.zip
?
Upvotes: 3
Views: 651
Reputation: 1734
In January 2024, the AdoptOpenJDK version of the javax.net code appears to be here: https://github.com/adoptium/jdk/tree/master/src/java.base/share/classes/javax/net
There is an old JDK8 archive here as well (archived on Sep 29, 2021): https://github.com/AdoptOpenJDK/openjdk-jdk8u/tree/master/jdk/src/share/classes/javax/net/
Upvotes: 2