Fixed bug with saving to flat file.

Must remember to include blank constructor so Beans can create the
object!
This commit is contained in:
tastybento 2018-05-29 14:57:13 -07:00
parent 55f42af9c2
commit 3f57959a95
1 changed files with 3 additions and 1 deletions

View File

@ -16,7 +16,9 @@ public class WarpsData implements DataObject {
@Expose
private String uniqueId = "warps";
@Expose
private Map<Location, UUID> warpSigns = new HashMap<>();
private Map<Location, UUID> warpSigns = new HashMap<>();
public WarpsData() {}
@Override
public String getUniqueId() {