(loader) Use the correct interface for InstructionCounter

This commit is contained in:
Viktor Lofgren 2023-08-22 11:11:36 +02:00
parent 46df58d28b
commit 46409c4c2d

View File

@ -215,7 +215,7 @@ public class LoaderMain {
public class InstructionCounter implements Interpreter { public class InstructionCounter implements Interpreter {
private int count = 0; private int count = 0;
public void loadKeywords(EdgeUrl url, DocumentMetadata metadata, DocumentKeywords words) { public void loadKeywords(EdgeUrl url, int features, DocumentMetadata metadata, DocumentKeywords words) {
count++; count++;
} }