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

matthew_swift
26.59.2008 cc382e83d7cb247348f2b63b6b66f9009aae6d0f
opends/src/server/org/opends/server/core/IdleTimeLimitThread.java
@@ -29,7 +29,6 @@
import org.opends.server.admin.std.server.ConnectionHandlerCfg;
import org.opends.server.api.ClientConnection;
import org.opends.server.api.ConnectionHandler;
import org.opends.server.api.DirectoryThread;
@@ -100,11 +99,9 @@
        } catch (InterruptedException ie) {}
        sleepTime = 5000L;
        for (ConnectionHandler ch : DirectoryServer.getConnectionHandlers())
        for (ConnectionHandler<?> ch : DirectoryServer.getConnectionHandlers())
        {
          ConnectionHandler<? extends ConnectionHandlerCfg> connHandler =
               (ConnectionHandler<? extends ConnectionHandlerCfg>) ch;
          for (ClientConnection c : connHandler.getClientConnections())
          for (ClientConnection c : ch.getClientConnections())
          {
            long idleTime = c.getIdleTime();
            if (idleTime > 0)