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

Jean-Noel Rouvignac
16.57.2015 a41662c1136b2bb4a4198df89e0e87d2be3ef099
opendj-server-legacy/src/main/java/org/opends/admin/ads/util/ConnectionUtils.java
@@ -671,7 +671,7 @@
    boolean throwException = false;
    if ((timeout > 0) && t.isAlive())
    if (timeout > 0 && t.isAlive())
    {
      t.interrupt();
      try
@@ -685,7 +685,7 @@
      throwException = true;
    }
    if ((pair[0] == null) && (pair[1] == null))
    if (pair[0] == null && pair[1] == null)
    {
      throwException = true;
    }
@@ -748,7 +748,7 @@
    if (attrs != null)
    {
      Attribute attr = attrs.get(attrName);
      if ((attr != null) && (attr.size() > 0))
      if (attr != null && attr.size() > 0)
      {
        Object o = attr.get();
        if (o instanceof String)