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

matthew_swift
05.42.2009 22094368c2865dcfb6daf8366425212b721a4657
opends/src/server/org/opends/server/monitors/ClientConnectionMonitorProvider.java
@@ -39,12 +39,7 @@
import org.opends.server.api.MonitorProvider;
import org.opends.server.config.ConfigException;
import org.opends.server.core.DirectoryServer;
import org.opends.server.types.Attribute;
import org.opends.server.types.AttributeBuilder;
import org.opends.server.types.AttributeType;
import org.opends.server.types.AttributeValue;
import org.opends.server.types.InitializationException;
import org.opends.server.types.*;
/**
@@ -192,7 +187,7 @@
    AttributeBuilder builder = new AttributeBuilder(attrType);
    for (ClientConnection conn : connMap.values())
    {
      builder.add(new AttributeValue(attrType, conn.getMonitorSummary()));
      builder.add(AttributeValues.create(attrType, conn.getMonitorSummary()));
    }
    ArrayList<Attribute> attrs = new ArrayList<Attribute>(2);