Remove draft API from selectEntities

By: md_5 <git@md-5.net>
This commit is contained in:
Bukkit/Spigot 2019-04-14 18:07:38 +10:00
parent 423392f6f7
commit cee3fdd2e6
2 changed files with 0 additions and 4 deletions

View file

@ -1497,9 +1497,7 @@ public final class Bukkit {
* no further guarantees are made.
* @throws IllegalArgumentException if the selector is malformed in any way
* or a parameter is null
* @deprecated draft API
*/
@Deprecated
@NotNull
public static List<Entity> selectEntities(@NotNull CommandSender sender, @NotNull String selector) throws IllegalArgumentException {
return server.selectEntities(sender, selector);

View file

@ -1263,9 +1263,7 @@ public interface Server extends PluginMessageRecipient {
* no further guarantees are made.
* @throws IllegalArgumentException if the selector is malformed in any way
* or a parameter is null
* @deprecated draft API
*/
@Deprecated
@NotNull
List<Entity> selectEntities(@NotNull CommandSender sender, @NotNull String selector) throws IllegalArgumentException;