提交 68b81caf 编写于 作者: M mchung

8068548: jdeps needs a different mechanism to recognize javax.jnlp as supported API

Reviewed-by: lancea, ddehaven
上级 8993d4a9
......@@ -155,7 +155,7 @@ class PlatformClassPath {
* Tests if a given package name is exported.
*/
public boolean isExportedPackage(String pn) {
if (Profile.getProfile(pn) != null) {
if (Profile.getProfile(pn) != null || "javax.jnlp".equals(pn)) {
return true;
}
return exportedPackages.containsKey(pn) ? exportedPackages.get(pn) : false;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册