refactor blockdata

This commit is contained in:
dfsek
2020-12-31 01:50:47 -07:00
parent 1826adf1c2
commit 92afe1c9ab
18 changed files with 140 additions and 95 deletions

View File

@@ -15,10 +15,10 @@ public class TokenizerTest {
// Actual run
long l = System.nanoTime();
while(tokenizer.hasNext()) {
Token t = tokenizer.fetch();
Token t = tokenizer.fetch();
while(t != null) {
System.out.println(t);
t = tokenizer.fetch();
}
System.out.println((double) (System.nanoTime() - l) / 1000000);