Jayan
Jayan

Reputation: 18459

How to map Fixed Versions of a java bug to release?

I am looking at some java bugs.

For example, one below is fixed by 7(b14). How can I find the JDK (Oracle or OpenJDK) version matching it?

http://bugs.java.com/view_bug.do?bug_id=6533413

enter image description here

Upvotes: 11

Views: 533

Answers (1)

Ortomala Lokni
Ortomala Lokni

Reputation: 62555

To solve this problem, it's better to use the OpenJDK bug system. You can find there the equivalent page for your bug.

There you can click on the Fix Version label and obtain the page corresponding to the JDK 7 without updates

If you look in the mercurial repository, you will see that the tags for build numbers are from jdk7-b24 to jdk7-b147

So it means that the build b14 is already integrated into the initial release of the JDK7.

Upvotes: 1

Related Questions