summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Ritchie <ritchiem@apache.org>2008-01-11 11:33:31 +0000
committerMartin Ritchie <ritchiem@apache.org>2008-01-11 11:33:31 +0000
commit04d00ca2c05583775f88c0093b1a29cc75cd9163 (patch)
tree8b35aaeb490336d22756d9818a30442c700bfb6f
parentc80e0d6037fd3ec7378bc8349d858e80a6107ad3 (diff)
downloadqpid-python-04d00ca2c05583775f88c0093b1a29cc75cd9163.tar.gz
Patch by Aidan Skinner to make third constructor public. This is done so that the BDBMessageStore tests can still run with the addition of the VirtualHost reaper thread.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2@611146 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--java/broker/src/main/java/org/apache/qpid/server/virtualhost/VirtualHost.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/java/broker/src/main/java/org/apache/qpid/server/virtualhost/VirtualHost.java b/java/broker/src/main/java/org/apache/qpid/server/virtualhost/VirtualHost.java
index 5dd0d60f8f..18a3333ea8 100644
--- a/java/broker/src/main/java/org/apache/qpid/server/virtualhost/VirtualHost.java
+++ b/java/broker/src/main/java/org/apache/qpid/server/virtualhost/VirtualHost.java
@@ -139,7 +139,7 @@ public class VirtualHost implements Accessable
this(name, hostConfig, null);
}
- private VirtualHost(String name, Configuration hostConfig, MessageStore store) throws Exception
+ public VirtualHost(String name, Configuration hostConfig, MessageStore store) throws Exception
{
_name = name;