Make InventoryThingParser package-private.

We don't need the parser exposed outside of the `things` package, and
none of the other thing parsers are public anyway. Coincidentally, this
fixes a warning about exposing InventoryThing outside of its visibility
scope, so yay.
This commit is contained in:
Andreas Troelsen 2024-01-01 18:34:20 +01:00
parent 3b7b638b00
commit 8e5d2f0d23
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ import org.bukkit.World;
import java.util.function.Supplier;
public class InventoryThingParser implements ThingParser {
class InventoryThingParser implements ThingParser {
private static final String PREFIX = "inv(";
private static final String SUFFIX = ")";