Skip to content
Snippets Groups Projects
Commit 9ef123d4 authored by Hendrik Buschmeier's avatar Hendrik Buschmeier Committed by Ramin Yaghoubzadeh Torky
Browse files

ipaaca-java: Fixed an unhandled exception when retracting non-existent IUs.

parent 9a765906
No related branches found
No related tags found
No related merge requests found
......@@ -453,8 +453,10 @@ public class InputBuffer extends Buffer
logger.warn("Update message for IU which we did not fully receive before.");
}
RemotePushIU iu = this.iuStore.get(iuc.getUid());
iu.applyRetraction();
callIuEventHandlers(iuc.getUid(), false, IUEventType.RETRACTED, iu.getCategory());
if (iu != null) {
iu.applyRetraction();
callIuEventHandlers(iuc.getUid(), false, IUEventType.RETRACTED, iu.getCategory());
}
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment