diff options
| author | Robert Godfrey <rgodfrey@apache.org> | 2012-01-27 20:15:31 +0000 |
|---|---|---|
| committer | Robert Godfrey <rgodfrey@apache.org> | 2012-01-27 20:15:31 +0000 |
| commit | 4dd9cbaf7fdc498a4eb5f2652d88afd20fe5d530 (patch) | |
| tree | e49a2b2dab05502118d48385e0989faab41feb45 /java/perftests | |
| parent | ab01c9c19e109b2f91cb505f53497592c52ca88d (diff) | |
| download | qpid-python-4dd9cbaf7fdc498a4eb5f2652d88afd20fe5d530.tar.gz | |
NO-JIRA: Encapsulate fields, use private members and accesors (keep checkstyle happy)
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1236867 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/perftests')
| -rw-r--r-- | java/perftests/src/main/java/org/apache/qpid/topic/TopicWithSelectorsTransientVolumeTest.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/perftests/src/main/java/org/apache/qpid/topic/TopicWithSelectorsTransientVolumeTest.java b/java/perftests/src/main/java/org/apache/qpid/topic/TopicWithSelectorsTransientVolumeTest.java index e0c0b00335..1d6ec07bb0 100644 --- a/java/perftests/src/main/java/org/apache/qpid/topic/TopicWithSelectorsTransientVolumeTest.java +++ b/java/perftests/src/main/java/org/apache/qpid/topic/TopicWithSelectorsTransientVolumeTest.java @@ -51,8 +51,8 @@ public class TopicWithSelectorsTransientVolumeTest extends QpidBrokerTestCase private static final int MSG_SIZE = 1024; private static final byte[] BYTE_ARRAY = new byte[MSG_SIZE]; - ArrayList<MyMessageSubscriber> _subscribers = new ArrayList<MyMessageSubscriber>(); - HashMap<String,Long> _queueMsgCounts = new HashMap<String,Long>(); + private ArrayList<MyMessageSubscriber> _subscribers = new ArrayList<MyMessageSubscriber>(); + private HashMap<String,Long> _queueMsgCounts = new HashMap<String,Long>(); private final static Object _lock=new Object(); private boolean _producerFailed; |
