mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

jvergara
09.28.2009 193c905c816eb903106ac6dc3785ddd57d7db784
opendj-sdk/opends/src/guitools/org/opends/guitools/controlpanel/browser/BrowserController.java
@@ -36,6 +36,8 @@
import java.util.Set;
import java.util.SortedSet;
import java.util.TreeSet;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.naming.NameNotFoundException;
import javax.naming.NamingException;
@@ -133,6 +135,9 @@
  private String filter;
  private static final Logger LOG =
    Logger.getLogger(BrowserController.class.getName());
  /**
   * Constructor of the BrowserController.
   * @param tree the tree that must be updated.
@@ -1540,8 +1545,9 @@
        try {
          refreshTaskDidProgress(task, oldState, newState);
        }
        catch(Exception x) {
          x.printStackTrace();
        catch(Throwable t)
        {
          LOG.log(Level.SEVERE, "Error calling refreshTaskDidProgress: "+t, t);
        }
      }
    };
@@ -1735,7 +1741,8 @@
    if (node.getError() != null) {
      if (node.getError().getException() != null)
      {
        node.getError().getException().printStackTrace();
        LOG.log(Level.SEVERE, "node has error: "+node.getError().getException(),
            node.getError().getException());
      }
      modifiers |= IconPool.MODIFIER_ERROR;
    }