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:
@@ -6,7 +6,7 @@ import org.hamcrest.TypeSafeMatcher;
|
|||||||
|
|
||||||
import java.util.Objects;
|
import java.util.Objects;
|
||||||
|
|
||||||
public class LexemeMatcher extends TypeSafeMatcher<Lexeme> {
|
class LexemeMatcher extends TypeSafeMatcher<Lexeme> {
|
||||||
|
|
||||||
private final TokenType type;
|
private final TokenType type;
|
||||||
private final String value;
|
private final String value;
|
||||||
|
|||||||
Reference in New Issue
Block a user