summaryrefslogtreecommitdiff
path: root/java/common/src/test
diff options
context:
space:
mode:
authorRobert Greig <rgreig@apache.org>2007-01-08 12:21:18 +0000
committerRobert Greig <rgreig@apache.org>2007-01-08 12:21:18 +0000
commite5d2186d7a9fb2d161c80c18e417f462b7f4d177 (patch)
tree04d3b4d77c00218df5a7c81be0a668cd4ef69006 /java/common/src/test
parent4b046df9a21bccd2d97bfcbfcb5106ce1435f409 (diff)
downloadqpid-python-e5d2186d7a9fb2d161c80c18e417f462b7f4d177.tar.gz
QPID-252 : Reduce unnecessary object creation
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@494042 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/common/src/test')
-rw-r--r--java/common/src/test/java/org/apache/qpid/pool/PoolingFilterTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/java/common/src/test/java/org/apache/qpid/pool/PoolingFilterTest.java b/java/common/src/test/java/org/apache/qpid/pool/PoolingFilterTest.java
index 972a935257..9a5208662b 100644
--- a/java/common/src/test/java/org/apache/qpid/pool/PoolingFilterTest.java
+++ b/java/common/src/test/java/org/apache/qpid/pool/PoolingFilterTest.java
@@ -39,7 +39,7 @@ public class PoolingFilterTest extends TestCase
//Create Pool
_executorService = ReferenceCountingExecutorService.getInstance();
_executorService.acquireExecutorService();
- _pool = new PoolingFilter(_executorService, PoolingFilter.WRITE_EVENTS,
+ _pool = PoolingFilter.createAynschWritePoolingFilter(_executorService,
"AsynchronousWriteFilter");
}