Fixed some potentially serious thread cancellation issues. Also, it's not clear to me that we really need to override the addNotify() method in this case. jrg

This commit is contained in:
talisman%anamorphic.com 2001-04-08 09:53:30 +00:00
parent 374c4a67ca
commit 2e4f195c8d

View File

@ -779,7 +779,7 @@ public class AddressList extends JScrollPane implements Serializable {
* addNotify creates the preferred size dimension because only
* after the peer has been created can we get the font metrics.
*/
public void addNotify () {
/* public void addNotify () {
super.addNotify ();
if (null == mPerfSize) {
@ -795,6 +795,7 @@ public class AddressList extends JScrollPane implements Serializable {
}
}
}
*/
/**
* Return PerfSize created in addNotify.