chore: Remove unused import

It Was added by me for testing and forgot to remove it :/
This commit is contained in:
ENDERZOMBI102 2024-07-06 01:31:42 +02:00
parent e748a2834f
commit 50e0ab5d48

View file

@ -9,7 +9,6 @@ import java.util.regex.Pattern;
import dev.frogmc.frogloader.api.mod.SemVer;
import dev.frogmc.frogloader.impl.SemVerParseException;
import lombok.NonNull;
import lombok.SneakyThrows;
import org.jetbrains.annotations.Nullable;
public record SemVerImpl(int major, int minor, int patch, String prerelease, String build) implements SemVer {