Make LexeMatcher package-private.

We don't need it outside of the `formula` package.

This fixes warnings about exposing Lexeme outside of its visibility
scope, so yay.
This commit is contained in:
Andreas Troelsen 2024-01-01 18:26:44 +01:00
parent eb51a31720
commit 3b7b638b00
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ import org.hamcrest.TypeSafeMatcher;
import java.util.Objects;
public class LexemeMatcher extends TypeSafeMatcher<Lexeme> {
class LexemeMatcher extends TypeSafeMatcher<Lexeme> {
private final TokenType type;
private final String value;