diff options
| author | Martin Ritchie <ritchiem@apache.org> | 2009-08-03 13:30:01 +0000 |
|---|---|---|
| committer | Martin Ritchie <ritchiem@apache.org> | 2009-08-03 13:30:01 +0000 |
| commit | 6e632256f72016da0e53d1e95ceccb397023933e (patch) | |
| tree | 39ebc856f3e7619b607d873936ef441c52d5cc4d | |
| parent | 49fbd2fc48cf7c0797ff3da59373e3b9c6f31d13 (diff) | |
| download | qpid-python-6e632256f72016da0e53d1e95ceccb397023933e.tar.gz | |
Removed unused method that only throws an Exception
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@800371 13f79535-47bb-0310-9956-ffa450edef68
| -rw-r--r-- | java/broker/src/main/java/org/apache/qpid/server/virtualhost/VirtualHost.java | 7 |
1 files changed, 1 insertions, 6 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 649e84cb50..ad1e8a580e 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 @@ -88,7 +88,7 @@ public class VirtualHost implements Accessable private final Timer _houseKeepingTimer; private VirtualHostConfiguration _configuration; - + public void setAccessableName(String name) { _logger.warn("Setting Accessable Name for VirualHost is not allowed. (" @@ -386,11 +386,6 @@ public class VirtualHost implements Accessable return _exchangeFactory; } - public ApplicationRegistry getApplicationRegistry() - { - throw new UnsupportedOperationException(); - } - public MessageStore getMessageStore() { return _messageStore; |
