Fix exception when removing message from MemoryMessageStore

git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@486382 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Guillaume Nodet 2006-12-12 22:46:51 +00:00
parent 16546f951a
commit 747acfef69
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ public class MemoryMessageStore implements MessageStore{
public void removeMessage(MessageId msgId) throws IOException{
synchronized(messageTable){
messageTable.remove(msgId);
if(lastBatchId!=null&lastBatchId.equals(msgId)){
if(lastBatchId!=null && lastBatchId.equals(msgId)){
lastBatchId=null;
}
}