From 218b40d6e175f5b58b89ff7e0b3050577d3aff2f Mon Sep 17 00:00:00 2001
From: matthew_swift <matthew_swift@localhost>
Date: Mon, 10 Nov 2008 13:41:49 +0000
Subject: [PATCH] This change fixes issue 3567:
---
opends/src/server/org/opends/server/protocols/internal/InternalClientConnection.java | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/opends/src/server/org/opends/server/protocols/internal/InternalClientConnection.java b/opends/src/server/org/opends/server/protocols/internal/InternalClientConnection.java
index 34d09f0..69c1571 100644
--- a/opends/src/server/org/opends/server/protocols/internal/InternalClientConnection.java
+++ b/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;
}
--
Gitblit v1.10.0