diff --git a/src/main/java/fr/xephi/authme/events/SessionEvent.java b/src/main/java/fr/xephi/authme/events/SessionEvent.java deleted file mode 100644 index 01f640066..000000000 --- a/src/main/java/fr/xephi/authme/events/SessionEvent.java +++ /dev/null @@ -1,33 +0,0 @@ -package fr.xephi.authme.events; - -import fr.xephi.authme.cache.auth.PlayerAuth; - -/** - * - * This event is call when a player logging in through a timed session - * - * @author Xephi59 - */ -public class SessionEvent extends CustomEvent { - - private PlayerAuth player; - private boolean isLogin; - - public SessionEvent(PlayerAuth auth, boolean isLogin) { - this.player = auth; - this.isLogin = isLogin; - } - - public PlayerAuth getPlayerAuth() { - return this.player; - } - - public void setPlayer(PlayerAuth player) { - this.player = player; - } - - public boolean isLogin() { - return isLogin; - } - -}