diff options
| author | Robert Godfrey <rgodfrey@apache.org> | 2014-09-28 16:46:34 +0000 |
|---|---|---|
| committer | Robert Godfrey <rgodfrey@apache.org> | 2014-09-28 16:46:34 +0000 |
| commit | 17ff2442352bac23f3776b3a8a6e4e419833e787 (patch) | |
| tree | b188a173a65e24e6302dbe12656c174cc2f4590d /java/client | |
| parent | 9eeb3ec4303c7527e9a9c815278606236e7d701d (diff) | |
| download | qpid-python-17ff2442352bac23f3776b3a8a6e4e419833e787.tar.gz | |
Remove redundant interfaces
git-svn-id: https://svn.apache.org/repos/asf/qpid/branches/QPID-6125-ProtocolRefactoring@1628082 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/client')
| -rw-r--r-- | java/client/src/test/java/org/apache/qpid/client/AMQSession_0_8Test.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/client/src/test/java/org/apache/qpid/client/AMQSession_0_8Test.java b/java/client/src/test/java/org/apache/qpid/client/AMQSession_0_8Test.java index 63d3fe57b0..2a8ab22b81 100644 --- a/java/client/src/test/java/org/apache/qpid/client/AMQSession_0_8Test.java +++ b/java/client/src/test/java/org/apache/qpid/client/AMQSession_0_8Test.java @@ -23,7 +23,7 @@ package org.apache.qpid.client; import org.apache.qpid.AMQException; import org.apache.qpid.client.transport.TestNetworkConnection; import org.apache.qpid.framing.AMQShortString; -import org.apache.qpid.framing.QueueDeclareOkBodyImpl; +import org.apache.qpid.framing.QueueDeclareOkBody; import org.apache.qpid.test.utils.QpidTestCase; import org.apache.qpid.transport.network.NetworkConnection; import org.apache.qpid.url.AMQBindingURL; @@ -50,7 +50,7 @@ public class AMQSession_0_8Test extends QpidTestCase { try { - _connection.getProtocolHandler().methodBodyReceived(1, new QueueDeclareOkBodyImpl(testQueueName, 0, 0)); + _connection.getProtocolHandler().methodBodyReceived(1, new QueueDeclareOkBody(testQueueName, 0, 0)); } catch (AMQException e) { |
