Details
-
Bug
-
Resolution: Fixed
-
P3
-
8
-
b117
Backports
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8028925 | port-stage-ppc-aix | Mandy Chung | P3 | Resolved | Fixed | master |
Description
The following methods in sun.misc.JavaAWTAccess are no longer needed and should be removed:
public Object get(Object key);
public void put(Object key, Object value);
public void remove(Object key);
public boolean isDisposed();
public boolean isMainAppContext();
The only dependency from core-libs to AppContext is the ability to determine if it is running in an applet environment and obtain an opaque unique object to represent different applet context.
we should be cautious in adding back any dependency to AppContext in the future.
public Object get(Object key);
public void put(Object key, Object value);
public void remove(Object key);
public boolean isDisposed();
public boolean isMainAppContext();
The only dependency from core-libs to AppContext is the ability to determine if it is running in an applet environment and obtain an opaque unique object to represent different applet context.
we should be cautious in adding back any dependency to AppContext in the future.
Attachments
Issue Links
- backported by
-
JDK-8028925 Remove unused methods in sun.misc.JavaAWTAccess
- Resolved