-
Bug
-
Resolution: Fixed
-
P4
-
5.0u1
-
b28
-
generic
-
generic
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