chore: remove some weird internal/experimental annotations

This commit is contained in:
mworzala 2024-05-29 08:30:00 -04:00 committed by Matt Worzala
parent 5182f19dd7
commit e3c1c06420
2 changed files with 0 additions and 6 deletions

View File

@ -2,7 +2,6 @@ package net.minestom.server.event.trait;
import net.minestom.server.entity.Entity;
import net.minestom.server.instance.Instance;
import org.jetbrains.annotations.ApiStatus;
import org.jetbrains.annotations.NotNull;
/**
@ -11,8 +10,6 @@ import org.jetbrains.annotations.NotNull;
* <p>
* Be aware that the entity's instance must be non-null.
*/
@ApiStatus.Internal
@ApiStatus.Experimental
public interface EntityInstanceEvent extends EntityEvent, InstanceEvent {
@Override
default @NotNull Instance getInstance() {

View File

@ -1,7 +1,6 @@
package net.minestom.server.event.trait;
import net.minestom.server.entity.Player;
import org.jetbrains.annotations.ApiStatus;
/**
* Represents an {@link PlayerEvent} which happen in {@link Player#getInstance()}.
@ -9,7 +8,5 @@ import org.jetbrains.annotations.ApiStatus;
* <p>
* Be aware that the player's instance must be non-null.
*/
@ApiStatus.Internal
@ApiStatus.Experimental
public interface PlayerInstanceEvent extends PlayerEvent, EntityInstanceEvent {
}