130131132133134135136137138139140
* @param index * @return hook * @throws WiringException */ public final synchronized Hook removeHook(int index) throws WiringException { Hook hook = hooks.remove(index); handlers.remove(hook); wireExtensibleHandlers(); return hook; }
113114115116117118119120121122123