浏览代码

Fix typo
Stop programming at late night

NuclearW 13 年之前
父节点
当前提交
fded7cad96
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3 3
      src/main/java/com/gmail/nossr50/events/McMMOPlayerLevelUpEvent.java

+ 3 - 3
src/main/java/com/gmail/nossr50/events/McMMOPlayerLevelUpEvent.java

@@ -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;
 	}
 	}
 }
 }