fix compile for ingest plugin lambda

This commit is contained in:
Ryan Ernst 2016-06-15 16:57:01 -07:00
parent dc2d7a2a6d
commit 7f6e0c6c02
1 changed files with 1 additions and 1 deletions

View File

@ -38,6 +38,6 @@ public class IngestAttachmentPlugin extends Plugin {
public void onModule(NodeModule nodeModule) throws IOException {
nodeModule.registerProcessor(AttachmentProcessor.TYPE,
(templateService, registry) -> new AttachmentProcessor.Factory());
(registry) -> new AttachmentProcessor.Factory());
}
}