Remove some old ApiStatus.Experimental annotations

By: md_5 <git@md-5.net>
This commit is contained in:
Bukkit/Spigot
2024-02-11 10:06:55 +11:00
parent f9381f1dc4
commit e32cdbcc1c
6 changed files with 0 additions and 22 deletions

View File

@ -534,9 +534,7 @@ public interface Entity extends Metadatable, CommandSender, Nameable, Persistent
* will need to be called before the entity is visible to a given player.
*
* @param visible default visibility status
* @apiNote draft API
*/
@ApiStatus.Experimental
public void setVisibleByDefault(boolean visible);
/**
@ -547,9 +545,7 @@ public interface Entity extends Metadatable, CommandSender, Nameable, Persistent
* will need to be called before the entity is visible to a given player.
*
* @return default visibility status
* @apiNote draft API
*/
@ApiStatus.Experimental
public boolean isVisibleByDefault();
/**
@ -563,7 +559,6 @@ public interface Entity extends Metadatable, CommandSender, Nameable, Persistent
* @return the players tracking this entity, or an empty set if none
*/
@NotNull
@ApiStatus.Experimental
Set<Player> getTrackedBy();
/**