0

I know the OpenJDK has a JIRA issue-tracking system, JDK Bug System.

Is there some way to use that tool, or some other source, to get a list of all the bug/enhancement/change tickets that are:

  • Related to a specific area such as the java.time package, and
  • Closed/resolved in a specific version of Java such as Java 9?
4

1 回答 1

2

您可以在同一 BugJira 链接中使用过滤器工具。

示例:https ://bugs.openjdk.java.net/browse/JDK-8167257?jql=project%20in%20(JDK)%20AND%20component%20in%20(core-libs)%20AND%20Subcomponent%20in% 20(java.time)

这一个过滤Component:core-libs and Subcomponent : java.time

您还可以通过关闭/打开和其他状态对其进行过滤。

于 2016-10-08T09:31:21.197 回答