Skip to content

Commit

Permalink
#43: Simplified message set management
Browse files Browse the repository at this point in the history
  • Loading branch information
martinbielmannicube committed Sep 11, 2019
1 parent a4fa576 commit f28c205
Showing 1 changed file with 1 addition and 2 deletions.
Expand Up @@ -511,8 +511,7 @@ public void commit(Object locker) throws PersistencyException {
thisStore.commit(locker);
}
if(locker != null){
messageSet = proxyMessagesMap.get(locker);
proxyMessagesMap.remove(locker);
messageSet = proxyMessagesMap.remove(locker);
if (messageSet != null){
for (ProxyMessage message: messageSet){
Gateway.getProxyServer().sendProxyEvent(message);
Expand Down

0 comments on commit f28c205

Please sign in to comment.