user14070
user14070

Reputation:

How do I find the source code for Java SE 6 update 10?

At Java SE Downloads I may for example download:

But I can't find any source code for update 10. If I click Java SE 6 JDK Source Code on the Java SE Downloads page it seems I can only download source for "JDK 6u3 Source". Where can I find the source for update 10? If there isn't any and I use update 10 for development, won't there be serious sync problems if I choose to debug and "step into" the source of a JDK method? (It seems like it should.)

Upvotes: 1

Views: 902

Answers (2)

jsight
jsight

Reputation: 28439

The Java source code for the libs should be included in the JDK installation.

As to the source code for the entire JDK, Sun has indicated that the changes for 6u10 will not make it into an OpenJDK6 release unless the community backports them from the OpenJDK7 releases (ie, Sun isn't doing the work on their own).

Upvotes: 1

Steve K
Steve K

Reputation: 19596

My download of JDK 1.6.0_10 has the src.zip already included.

Upvotes: 1

Related Questions