RESOLVED - issue BATCH-1269: Add FieldSet support to PassThroughFieldExtractor
http://jira.springframework.org/browse/BATCH-1269
This commit is contained in:
@@ -58,6 +58,10 @@ public class PassThroughFieldExtractor<T> implements FieldExtractor<T> {
|
||||
}
|
||||
return args;
|
||||
}
|
||||
|
||||
if (item instanceof FieldSet) {
|
||||
return ((FieldSet) item).getValues();
|
||||
}
|
||||
|
||||
return new Object[] { item };
|
||||
|
||||
|
||||
Reference in New Issue
Block a user