Call Vector.removeAllElements() instead of Vector.clear() to allow compilation and execution with JDK 1.1.x (Bugzilla bug 107830)

This commit is contained in:
rweltman%netscape.com 2001-11-09 19:57:54 +00:00
Родитель 0d257cc179
Коммит 8e6f8e1cef
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -361,7 +361,7 @@ class LDAPConnThread extends Thread {
c.deregisterConnection();
}
}
m_registered.clear();
m_registered.removeAllElements();
m_registered = null;
m_messages = null;
m_requests.clear();