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
Родитель e6f1bd8683
Коммит d11981a6e2
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -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.