From b572494c9cc81a2cc3fabd26f3051dc136091642 Mon Sep 17 00:00:00 2001 From: Shane Freeder Date: Sun, 6 Oct 2019 01:07:01 +0100 Subject: [PATCH] Remove the other deprecated PlayerProfile constructor --- .../com/gmail/nossr50/datatypes/player/PlayerProfile.java | 5 ----- 1 file changed, 5 deletions(-) diff --git a/mcmmo-core/src/main/java/com/gmail/nossr50/datatypes/player/PlayerProfile.java b/mcmmo-core/src/main/java/com/gmail/nossr50/datatypes/player/PlayerProfile.java index 02b738950..877c7c9a6 100644 --- a/mcmmo-core/src/main/java/com/gmail/nossr50/datatypes/player/PlayerProfile.java +++ b/mcmmo-core/src/main/java/com/gmail/nossr50/datatypes/player/PlayerProfile.java @@ -34,11 +34,6 @@ public class PlayerProfile { private HashMap rollingSkillsXp = new HashMap(); private final mcMMO pluginRef; - @Deprecated - public PlayerProfile(mcMMO pluginRef, String playerName) { - this(pluginRef, playerName, null); - } - public PlayerProfile(mcMMO pluginRef, String playerName, UUID uuid) { this.pluginRef = pluginRef; this.uuid = uuid;