src/java.naming/share/classes/com/sun/jndi/ldap/NamingEventNotifier.java
changeset 52902 e3398b2e1ab0
parent 47216 71c04702a3d5
equal deleted inserted replaced
52901:3ba9ff4d4aaf 52902:e3398b2e1ab0
   113      */
   113      */
   114     public void run() {
   114     public void run() {
   115         try {
   115         try {
   116             Continuation cont = new Continuation();
   116             Continuation cont = new Continuation();
   117             cont.setError(this, info.name);
   117             cont.setError(this, info.name);
   118             Name nm = (info.name == null || info.name.equals("")) ?
   118             Name nm = (info.name == null || info.name.isEmpty()) ?
   119                 new CompositeName() : new CompositeName().add(info.name);
   119                 new CompositeName() : new CompositeName().add(info.name);
   120 
   120 
   121             results = context.searchAux(nm, info.filter, info.controls,
   121             results = context.searchAux(nm, info.filter, info.controls,
   122                 true, false, cont);
   122                 true, false, cont);
   123 
   123