changed data type

This commit is contained in:
sekwah 2018-01-23 06:15:51 +00:00
parent 01af1faf91
commit cf1126f71d

View File

@ -1,12 +1,14 @@
package com.sekwah.advancedportals.coreconnector.container;
import java.util.UUID;
/**
* Just a temporary container for whenever advanced portals needs to get data from a player
*/
public class PlayerContainer {
public String getUUID() {
return "";
public UUID getUUID() {
return null;
}
public void sendMessage(String message) {