RESOLVED - BATCH-741: DefaultFieldSet should clone the tokens before exposing them in getValues()

This commit is contained in:
robokaso
2008-07-22 11:21:36 +00:00
parent 6f20885e28
commit 89bd7c3350

View File

@@ -84,7 +84,7 @@ public class DefaultFieldSet implements FieldSet {
* @see org.springframework.batch.io.file.mapping.IFieldSet#getValues()
*/
public String[] getValues() {
return tokens;
return tokens.clone();
}
/*