Skip to content

Commit

Permalink
remove duplicate
Browse files Browse the repository at this point in the history
  • Loading branch information
onebeastchris committed Jan 30, 2025
1 parent dfc7c32 commit 6f888d7
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ public SessionLoadResourcePacksEvent(@NonNull GeyserConnection connection) {
*
* @param uuid the resource pack uuid to register the options for
* @param options the options to register for the pack
* @throws IllegalArgumentException if the pack is not registered
* @throws ResourcePackException if an issue occurred during resource pack option registration
*/
public abstract void registerOptions(@NonNull UUID uuid, @NonNull ResourcePackOption<?>... options);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ public abstract class GeyserDefineResourcePacksEvent implements Event {
*
* @param uuid the resource pack uuid to register the options for
* @param options the options to register for the pack
* @throws IllegalArgumentException if the pack is not registered
* @throws ResourcePackException if an issue occurred during resource pack option registration
*/
public abstract void registerOptions(@NonNull UUID uuid, @NonNull ResourcePackOption<?>... options);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public interface ResourcePack {
String contentKey();

/**
* @return the resource pack uuid. Shortcut for getting the UUID from the header.
* @return the resource pack uuid. Shortcut for getting the UUID from the header
*/
@NonNull
default UUID uuid() {
Expand All @@ -86,7 +86,7 @@ static ResourcePack create(@NonNull PackCodec codec) {
* It can be used to set a content key.
*
* @param codec the {@link PackCodec} to base the builder on
* @return a {@link Builder} to build a resource pack.
* @return a {@link Builder} to build a resource pack
*/
static Builder builder(@NonNull PackCodec codec) {
return GeyserApi.api().provider(Builder.class, codec);
Expand Down

0 comments on commit 6f888d7

Please sign in to comment.