mirror of https://github.com/apache/activemq.git
additional fix for https://issues.apache.org/activemq/browse/AMQ-2088
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@742888 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
586ea12d1e
commit
60d6c36ff2
|
@ -63,4 +63,9 @@ public abstract class TextWireFormat implements WireFormat {
|
|||
return unmarshal(dis);
|
||||
}
|
||||
|
||||
public boolean inReceive() {
|
||||
// TODO Implement for inactivity monitor
|
||||
return false;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -216,4 +216,9 @@ public class XmppWireFormat implements WireFormat {
|
|||
public void setVersion(int version) {
|
||||
this.version = version;
|
||||
}
|
||||
|
||||
public boolean inReceive() {
|
||||
// TODO Implement for inactivity monitor
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue