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

matthew_swift
10.41.2008 218b40d6e175f5b58b89ff7e0b3050577d3aff2f
opends/src/server/org/opends/server/protocols/internal/InternalClientConnection.java
@@ -141,7 +141,7 @@
  private AuthenticationInfo authenticationInfo;
  // 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;
@@ -258,7 +258,7 @@
    }
    connectionID  = nextConnectionID.getAndDecrement();
    operationList = new LinkedList<AbstractOperation>();
    operationList = new LinkedList<Operation>();
    try
    {
@@ -298,7 +298,7 @@
    super.setLookthroughLimit(0);
    connectionID  = nextConnectionID.getAndDecrement();
    operationList = new LinkedList<AbstractOperation>();
    operationList = new LinkedList<Operation>();
    try
    {
@@ -2919,7 +2919,7 @@
       mayExtend=false,
       mayInvoke=false)
  @Override()
  public Collection<AbstractOperation> getOperationsInProgress()
  public Collection<Operation> getOperationsInProgress()
  {
    return operationList;
  }