Remove forRemoval

This commit is contained in:
onebeastchris 2023-10-10 22:08:46 +02:00
parent dbfc153b04
commit f74d36a1f9
3 changed files with 3 additions and 3 deletions

View file

@ -68,7 +68,7 @@ public abstract class SessionLoadResourcePacksEvent extends ConnectionEvent {
/**
* Registers a {@link ResourcePackCDNEntry} to be sent to the client.
*
* @param entry a resource pack CDN entry that will be sent to the client.
* @param entry CDN entry that will be sent to the client to download a resource pack from.
*/
public abstract boolean register(@NonNull ResourcePackCDNEntry entry);

View file

@ -65,7 +65,7 @@ public abstract class GeyserDefineResourcePacksEvent implements Event {
/**
* Registers a {@link ResourcePackCDNEntry} to be sent to clients.
*
* @param entry a resource pack CDN entry that will be sent to clients.
* @param entry CDN entry that will be sent to the client to download a resource pack from.
*/
public abstract boolean register(@NonNull ResourcePackCDNEntry entry);

View file

@ -38,6 +38,6 @@ import java.util.List;
* @param resourcePacks a mutable list of the currently listed resource packs
*/
@Deprecated(forRemoval = true)
@Deprecated
public record GeyserLoadResourcePacksEvent(@Deprecated @NonNull List<Path> resourcePacks) implements Event {
}