Details
-
Type:
Bug
-
Status: Resolved
-
Priority:
P4
-
Resolution: Fixed
-
Affects Version/s: 5.0u1
-
Fix Version/s: 6
-
Component/s: client-libs
-
Subcomponent:
-
Resolved In Build:b28
-
CPU:generic
-
OS:generic
Description
In method javax.swing.plaf.basic.BasicLookAndFeel.uninitialize() is an assignment to a local object called tk, but it is never used in the method.
/**
* UIManager.setLookAndFeel calls this method just
* before we're replaced by a new default look and feel.
*/
public void uninitialize() {
Toolkit tk = Toolkit.getDefaultToolkit(); // <------ here
if(invocator != null) {
AccessController.doPrivileged(invocator);
invocator = null;
}
}
###@###.### 2005-2-14 14:23:49 GMT
/**
* UIManager.setLookAndFeel calls this method just
* before we're replaced by a new default look and feel.
*/
public void uninitialize() {
Toolkit tk = Toolkit.getDefaultToolkit(); // <------ here
if(invocator != null) {
AccessController.doPrivileged(invocator);
invocator = null;
}
}
###@###.### 2005-2-14 14:23:49 GMT