Fix warnings
This commit is contained in:
@@ -9,7 +9,7 @@ import static com.craftinginterpreters.lox.TokenType.*;
|
||||
|
||||
class Scanner {
|
||||
private final String source;
|
||||
private final List<Token> tokens = new ArrayList();
|
||||
private final List<Token> tokens = new ArrayList<Token>();
|
||||
private int start = 0;
|
||||
private int current = 0;
|
||||
private int line = 1;
|
||||
|
||||
Reference in New Issue
Block a user