forked from Fascinated/Bat
remove caching until i can find a good solution
This commit is contained in:
@ -4,12 +4,14 @@ import lombok.AllArgsConstructor;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @author Fascinated (fascinated7)
|
||||
*/
|
||||
@AllArgsConstructor
|
||||
@Getter @Setter
|
||||
public abstract class Profile {
|
||||
public abstract class Profile implements Serializable {
|
||||
/**
|
||||
* The key of the profile.
|
||||
*/
|
||||
|
@ -2,6 +2,7 @@ package cc.fascinated.bat.common;
|
||||
|
||||
import lombok.Getter;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
|
||||
@ -9,7 +10,7 @@ import java.util.Map;
|
||||
* @author Fascinated (fascinated7)
|
||||
*/
|
||||
@Getter
|
||||
public class ProfileHolder {
|
||||
public class ProfileHolder implements Serializable {
|
||||
/**
|
||||
* The profiles for the holder
|
||||
*/
|
||||
|
Reference in New Issue
Block a user