示例#1
0
 /**
  * Bake all handler lists. Best used just after all normal event registration is complete, ie just
  * after all plugins are loaded if you're using fevents in a plugin system.
  */
 public static void bakeAll() {
   synchronized (allLists) {
     for (HandlerList h : allLists) {
       h.bake();
     }
   }
 }