File tree 1 file changed +4
-3
lines changed
src/java.naming/share/classes/com/sun/jndi/ldap
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 26
26
package com .sun .jndi .ldap ;
27
27
28
28
import java .io .*;
29
+ import java .util .ArrayList ;
29
30
import java .util .Locale ;
30
31
import java .util .Vector ;
31
32
import java .util .Hashtable ;
@@ -1577,15 +1578,15 @@ void processUnsolicited(BerDecoder ber) {
1577
1578
1578
1579
1579
1580
private void notifyUnsolicited (Object e ) {
1580
- Vector <LdapCtx > unsolicitedCopy ;
1581
+ ArrayList <LdapCtx > unsolicitedCopy ;
1581
1582
synchronized (unsolicited ) {
1582
- unsolicitedCopy = new Vector <>(unsolicited );
1583
+ unsolicitedCopy = new ArrayList <>(unsolicited );
1583
1584
if (e instanceof NamingException ) {
1584
1585
unsolicited .setSize (0 ); // no more listeners after exception
1585
1586
}
1586
1587
}
1587
1588
for (int i = 0 ; i < unsolicitedCopy .size (); i ++) {
1588
- unsolicitedCopy .elementAt (i ).fireUnsolicited (e );
1589
+ unsolicitedCopy .get (i ).fireUnsolicited (e );
1589
1590
}
1590
1591
}
1591
1592
You can’t perform that action at this time.
0 commit comments