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

jcduff
23.04.2008 b4f8838b15342670c31753a484abf0129e3c9653
opendj-sdk/opends/src/server/org/opends/server/tasks/DisconnectClientTask.java
@@ -109,7 +109,7 @@
connIDLoop:
      for (Attribute a : attrList)
      {
        for (AttributeValue v : a.getValues())
        for (AttributeValue v : a)
        {
          try
          {
@@ -147,7 +147,7 @@
notifyClientLoop:
      for (Attribute a : attrList)
      {
        for (AttributeValue v : a.getValues())
        for (AttributeValue v : a)
        {
          String stringValue = toLowerCase(v.getStringValue());
          if (stringValue.equals("true"))
@@ -181,7 +181,7 @@
disconnectMessageLoop:
      for (Attribute a : attrList)
      {
        for (AttributeValue v : a.getValues())
        for (AttributeValue v : a)
        {
          disconnectMessage = Message.raw(v.getStringValue());
          break disconnectMessageLoop;
@@ -199,7 +199,7 @@
  {
    // Get the specified client connection.
    ClientConnection clientConnection = null;
    for (ConnectionHandler handler : DirectoryServer.getConnectionHandlers())
    for (ConnectionHandler<?> handler : DirectoryServer.getConnectionHandlers())
    {
      ConnectionHandler<? extends ConnectionHandlerCfg> connHandler =
           (ConnectionHandler<? extends ConnectionHandlerCfg>) handler;