NIFI-1043 fix for erroneous whitespace in maven archetype. This closes #100. Signed off by Tony Kurc <tkurc@apache.org>

This commit is contained in:
Wouter de Bie 2015-10-17 09:00:18 -04:00 committed by Tony Kurc
parent 49ee06b0a2
commit ce7d098a48
1 changed files with 4 additions and 7 deletions

View File

@ -84,13 +84,10 @@ public class MyProcessor extends AbstractProcessor {
@Override
public void onTrigger(final ProcessContext context, final ProcessSession session) throws ProcessException {
FlowFile flowFile = session.get();
if ( flowFile == null ) {
return;
}
FlowFile flowFile = session.get();
if ( flowFile == null ) {
return;
}
// TODO implement
}
}