mirror of
https://github.com/garbagemule/MobArena.git
synced 2025-02-16 12:31:57 +01:00
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:
parent
eb51a31720
commit
3b7b638b00
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user