Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to find bugs in new JavaFx bug tracker

Existing links to javafx bugs are dead. How can I find bugs in new system? E.g. how to find bug
https://javafx-jira.kenai.com/browse/RT-28874
in
https://bugs.openjdk.java.net

like image 241
mjjaniec Avatar asked Jun 04 '15 14:06

mjjaniec


2 Answers

As stated on "https://javafx-jira.kenai.com/"

The JavaFX bugs are now on bugs.openjdk.java.net, go there and search for the ID RT-____ to find the bug you are looking for.

After using the search for your ID, I landed here: https://bugs.openjdk.java.net/browse/JDK-8090548

;) seems pretty easy (checked the correct mapping with some bug-id I found myself, seems to work)

like image 172
FibreFoX Avatar answered Nov 19 '22 04:11

FibreFoX


You can use criteria in advanced search:

project = JDK AND key = "RT-28874"
like image 1
kbec Avatar answered Nov 19 '22 02:11

kbec