2015-08-07 07:34:06 +02:00
From 986a5a9ab066bf672dfba0e657c47830768bc5a9 Mon Sep 17 00:00:00 2001
2014-07-21 22:46:54 +02:00
From: md_5 <git@md-5.net>
Date: Sun, 30 Mar 2014 15:58:22 +1100
Subject: [PATCH] Remove deprecation on some player lookup methods
Most of these methods still have plenty of use given that only one player with each name can exist at a time. Deprecating these methods renders even basic functionality such as /msg <name> impossible without causing compiler warnings. We will maintain this API and it should be considered safe and appropriate for most use cases.
diff --git a/src/main/java/org/bukkit/Bukkit.java b/src/main/java/org/bukkit/Bukkit.java
2015-08-07 07:34:06 +02:00
index 818bfd4..584fe11 100644
2014-07-21 22:46:54 +02:00
--- a/src/main/java/org/bukkit/Bukkit.java
+++ b/src/main/java/org/bukkit/Bukkit.java
2015-08-07 07:34:06 +02:00
@@ -373,12 +373,9 @@ public final class Bukkit {
2014-11-30 23:16:48 +01:00
* <p>
* This method may not return objects for offline players.
*
- * @deprecated Use {@link #getPlayer(UUID)} as player names are no longer
- * guaranteed to be unique
* @param name the name to look up
* @return a player if one was found, null otherwise
2014-07-21 22:46:54 +02:00
*/
- @Deprecated
public static Player getPlayer(String name) {
return server.getPlayer(name);
}
2015-08-07 07:34:06 +02:00
@@ -386,12 +383,9 @@ public final class Bukkit {
2014-07-21 22:46:54 +02:00
/**
2014-11-30 23:16:48 +01:00
* Gets the player with the exact given name, case insensitive.
*
- * @deprecated Use {@link #getPlayer(UUID)} as player names are no longer
- * guaranteed to be unique
* @param name Exact name of the player to retrieve
* @return a player object if one was found, null otherwise
2014-07-21 22:46:54 +02:00
*/
- @Deprecated
2014-11-30 23:16:48 +01:00
public static Player getPlayerExact(String name) {
return server.getPlayerExact(name);
2014-07-21 22:46:54 +02:00
}
2015-08-07 07:34:06 +02:00
@@ -403,12 +397,9 @@ public final class Bukkit {
2014-11-30 23:16:48 +01:00
* This list is not sorted in any particular order. If an exact match is
* found, the returned list will only contain a single result.
*
- * @deprecated Use {@link #getPlayer(UUID)} as player names are no longer
- * guaranteed to be unique
* @param name the (partial) name to match
* @return list of all possible players
2014-07-21 22:46:54 +02:00
*/
- @Deprecated
2014-11-30 23:16:48 +01:00
public static List<Player> matchPlayer(String name) {
return server.matchPlayer(name);
2014-07-21 22:46:54 +02:00
}
diff --git a/src/main/java/org/bukkit/Server.java b/src/main/java/org/bukkit/Server.java
2015-08-07 07:34:06 +02:00
index f4aa4a8..65bf845 100644
2014-07-21 22:46:54 +02:00
--- a/src/main/java/org/bukkit/Server.java
+++ b/src/main/java/org/bukkit/Server.java
2015-08-07 07:34:06 +02:00
@@ -309,23 +309,17 @@ public interface Server extends PluginMessageRecipient {
2014-07-21 22:46:54 +02:00
* <p>
* This method may not return objects for offline players.
*
- * @deprecated Use {@link #getPlayer(UUID)} as player names are no longer
- * guaranteed to be unique
* @param name the name to look up
* @return a player if one was found, null otherwise
*/
- @Deprecated
public Player getPlayer(String name);
/**
* Gets the player with the exact given name, case insensitive.
*
- * @deprecated Use {@link #getPlayer(UUID)} as player names are no longer
- * guaranteed to be unique
* @param name Exact name of the player to retrieve
* @return a player object if one was found, null otherwise
*/
- @Deprecated
public Player getPlayerExact(String name);
/**
2015-08-07 07:34:06 +02:00
@@ -335,12 +329,9 @@ public interface Server extends PluginMessageRecipient {
2014-07-21 22:46:54 +02:00
* This list is not sorted in any particular order. If an exact match is
* found, the returned list will only contain a single result.
*
- * @deprecated Use {@link #getPlayer(UUID)} as player names are no longer
- * guaranteed to be unique
* @param name the (partial) name to match
* @return list of all possible players
*/
- @Deprecated
public List<Player> matchPlayer(String name);
/**
--
2015-05-25 14:05:40 +02:00
2.1.4
2014-07-21 22:46:54 +02:00