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

matthew_swift
10.41.2008 218b40d6e175f5b58b89ff7e0b3050577d3aff2f
opends/src/server/org/opends/server/protocols/jmx/JmxClientConnection.java
@@ -100,7 +100,7 @@
  private ConnectionSecurityProvider securityProvider;
  // The empty operation list for this connection.
  private LinkedList<AbstractOperation> operationList;
  private LinkedList<Operation> operationList;
  // The connection ID for this client connection.
  private long connectionID;
@@ -155,7 +155,7 @@
          true,
          ERR_LDAP_CONNHANDLER_REJECTED_BY_SERVER.get());
    }
    operationList = new LinkedList<AbstractOperation>();
    operationList = new LinkedList<Operation>();
    try
    {
@@ -1130,7 +1130,7 @@
   *
   * @return  The set of operations in progress for this client connection.
   */
  public Collection<AbstractOperation> getOperationsInProgress()
  public Collection<Operation> getOperationsInProgress()
  {
    return operationList;
  }