summaryrefslogtreecommitdiff
path: root/java/common/src/main/java/org/apache/qpid/framing/QueuePurgeBody.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/common/src/main/java/org/apache/qpid/framing/QueuePurgeBody.java')
-rw-r--r--java/common/src/main/java/org/apache/qpid/framing/QueuePurgeBody.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/java/common/src/main/java/org/apache/qpid/framing/QueuePurgeBody.java b/java/common/src/main/java/org/apache/qpid/framing/QueuePurgeBody.java
index d2f41922cc..5a04e21355 100644
--- a/java/common/src/main/java/org/apache/qpid/framing/QueuePurgeBody.java
+++ b/java/common/src/main/java/org/apache/qpid/framing/QueuePurgeBody.java
@@ -125,14 +125,14 @@ public class QueuePurgeBody extends AMQMethodBodyImpl implements EncodableAMQDat
return buf.toString();
}
- public static <T> T process(final int channelId,
+ public static void process(final int channelId,
final MarkableDataInput buffer,
- final MethodProcessor<T> dispatcher) throws IOException
+ final MethodProcessor dispatcher) throws IOException
{
int ticket = buffer.readUnsignedShort();
AMQShortString queue = buffer.readAMQShortString();
boolean nowait = (buffer.readByte() & 0x01) == 0x01;
- return dispatcher.queuePurge(channelId, queue, nowait);
+ dispatcher.receiveQueuePurge(channelId, queue, nowait);
}
}