/* 450 */ getHandlersList(vmID).remove(handler);
/* */ }
/* */
/* */ private ConcurrentHashSet<ServerInvokerCallbackHandler> getHandlersList(String vmID)
/* */ {
/* 455 */ ConcurrentHashSet perVMList = (ConcurrentHashSet)this.clientHandlersByVM.get(vmID);
/* 456 */ if (perVMList == null)
/* */ {
/* 458 */ perVMList = new ConcurrentHashSet();
/* 459 */ this.clientHandlersByVM.put(vmID, perVMList);
/* 460 */ perVMList = (ConcurrentHashSet)this.clientHandlersByVM.get(vmID);
/* */ }
/* 462 */ return perVMList;
/* */ }