From 78d186b5a3fad7920c622d022febb8ea4c47d192 Mon Sep 17 00:00:00 2001 From: Siphalor Date: Sun, 26 Oct 2025 20:20:39 +0100 Subject: [PATCH] [serde-hjson] Unmark HjsonLexer as internal --- .../src/main/java/de/siphalor/tweed5/data/hjson/HjsonLexer.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/tweed5/serde-hjson/src/main/java/de/siphalor/tweed5/data/hjson/HjsonLexer.java b/tweed5/serde-hjson/src/main/java/de/siphalor/tweed5/data/hjson/HjsonLexer.java index 6feccf6..128b047 100644 --- a/tweed5/serde-hjson/src/main/java/de/siphalor/tweed5/data/hjson/HjsonLexer.java +++ b/tweed5/serde-hjson/src/main/java/de/siphalor/tweed5/data/hjson/HjsonLexer.java @@ -2,14 +2,12 @@ package de.siphalor.tweed5.data.hjson; import de.siphalor.tweed5.dataapi.api.TweedDataReadException; import lombok.RequiredArgsConstructor; -import org.jetbrains.annotations.ApiStatus; import org.jspecify.annotations.Nullable; import java.io.IOException; import java.io.Reader; import java.util.PrimitiveIterator; -@ApiStatus.Internal @RequiredArgsConstructor public class HjsonLexer implements AutoCloseable { private static final int EMPTY_CODEPOINT = -2;