Stop programming at late night
This commit is contained in:
NuclearW 2012-01-28 02:35:20 -05:00
parent 23354ce049
commit fded7cad96

View File

@ -43,13 +43,13 @@ public class McMMOPlayerLevelUpEvent extends Event {
} }
/** Rest of file is required boilerplate for custom events **/ /** Rest of file is required boilerplate for custom events **/
private static final HandlerList handers = new HandlerList(); private static final HandlerList handlers = new HandlerList();
public HandlerList getHandlers() { public HandlerList getHandlers() {
return handers; return handlers;
} }
public static HandlerList getHandlerList() { public static HandlerList getHandlerList() {
return handers; return handlers;
} }
} }