From 46c0805a6ca3b8c112f1f12cd046f7ee45ff7cdc Mon Sep 17 00:00:00 2001 From: Darkere Date: Fri, 15 Oct 2021 17:02:40 +0200 Subject: [PATCH] fix misplaced comma --- .../refinedstorage/api/network/grid/IGridFactory.java | 2 +- .../refinedstorage/api/network/grid/IGridManager.java | 2 +- .../refinedstorage/api/network/item/INetworkItemManager.java | 2 +- .../refinedstorage/api/network/item/INetworkItemProvider.java | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/com/refinedmods/refinedstorage/api/network/grid/IGridFactory.java b/src/main/java/com/refinedmods/refinedstorage/api/network/grid/IGridFactory.java index b34e74211..057ed2e50 100644 --- a/src/main/java/com/refinedmods/refinedstorage/api/network/grid/IGridFactory.java +++ b/src/main/java/com/refinedmods/refinedstorage/api/network/grid/IGridFactory.java @@ -18,7 +18,7 @@ public interface IGridFactory { * * @param player the player * @param stack the stack - * @param slot the slot in the players inventory,or curio slot, otherwise -1 + * @param slot the slot in the players inventory or curio slot, otherwise -1 * @return the grid, or null if a problem occurred */ @Nullable diff --git a/src/main/java/com/refinedmods/refinedstorage/api/network/grid/IGridManager.java b/src/main/java/com/refinedmods/refinedstorage/api/network/grid/IGridManager.java index 0afb4081a..e2c91dab3 100644 --- a/src/main/java/com/refinedmods/refinedstorage/api/network/grid/IGridManager.java +++ b/src/main/java/com/refinedmods/refinedstorage/api/network/grid/IGridManager.java @@ -36,7 +36,7 @@ public interface IGridManager { * @param id the grid factory id * @param player the player * @param stack the stack - * @param slot the slot in the players inventory,or curio slot, otherwise -1 + * @param slot the slot in the players inventory or curio slot, otherwise -1 */ void openGrid(ResourceLocation id, ServerPlayerEntity player, ItemStack stack, PlayerSlot slot); diff --git a/src/main/java/com/refinedmods/refinedstorage/api/network/item/INetworkItemManager.java b/src/main/java/com/refinedmods/refinedstorage/api/network/item/INetworkItemManager.java index 3977b5e8b..78c0ddb92 100644 --- a/src/main/java/com/refinedmods/refinedstorage/api/network/item/INetworkItemManager.java +++ b/src/main/java/com/refinedmods/refinedstorage/api/network/item/INetworkItemManager.java @@ -16,7 +16,7 @@ public interface INetworkItemManager { * * @param player the player that opened the network item * @param stack the stack that has been opened - * @param slot the slot in the players inventory,or curio slot, otherwise -1 + * @param slot the slot in the players inventory or curio slot, otherwise -1 */ void open(PlayerEntity player, ItemStack stack, PlayerSlot slot); diff --git a/src/main/java/com/refinedmods/refinedstorage/api/network/item/INetworkItemProvider.java b/src/main/java/com/refinedmods/refinedstorage/api/network/item/INetworkItemProvider.java index 5059f30c6..ea0f0e701 100644 --- a/src/main/java/com/refinedmods/refinedstorage/api/network/item/INetworkItemProvider.java +++ b/src/main/java/com/refinedmods/refinedstorage/api/network/item/INetworkItemProvider.java @@ -16,7 +16,7 @@ public interface INetworkItemProvider { * @param handler the network item handler * @param player the player * @param stack the stack - * @param slot the slot in the players inventory,or curio slot, otherwise -1 + * @param slot the slot in the players inventory or curio slot, otherwise -1 * @return the network item */ @Nonnull