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
parent 0d257cc179
commit 8e6f8e1cef

View File

@ -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();