summaryrefslogtreecommitdiff
path: root/qpid/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
commit6c462407cb00bfe87737ee6ae99682eebb335090 (patch)
treea9c728eddfef516ebb4d36d159aa17aa6c8687a7 /qpid/java/common/src/test
parent6a607546b8f9769ccfcfa7a7bd1ebd9cc56fdfbe (diff)
downloadqpid-python-6c462407cb00bfe87737ee6ae99682eebb335090.tar.gz
QPID-252 : Reduce unnecessary object creation
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@494042 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/common/src/test')
-rw-r--r--qpid/java/common/src/test/java/org/apache/qpid/pool/PoolingFilterTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/java/common/src/test/java/org/apache/qpid/pool/PoolingFilterTest.java b/qpid/java/common/src/test/java/org/apache/qpid/pool/PoolingFilterTest.java
index 972a935257..9a5208662b 100644
--- a/qpid/java/common/src/test/java/org/apache/qpid/pool/PoolingFilterTest.java
+++ b/qpid/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");
}