---
fix up
This commit is contained in:
aalehin 2023-06-01 11:35:38 +03:00
parent 226c33faaf
commit 5fa0bcd9be
2 changed files with 3 additions and 1 deletions

View file

@ -21,6 +21,7 @@ public class SDf13Table extends AbstractTable<SDf13> {
public SDf13 getEntity(SWTHeaderData header, String[] entity) { public SDf13 getEntity(SWTHeaderData header, String[] entity) {
SDf13 result = new SDf13(); SDf13 result = new SDf13();
result.setFileName(filename); result.setFileName(filename);
result.setOutDocument(header.getValFor20Tag());
result.setGenerationTime(Instant.now()); result.setGenerationTime(Instant.now());
result.setGenerationId(fileId); result.setGenerationId(fileId);
return result; return result;

View file

@ -112,8 +112,9 @@ S_DF_13
} }
return separetedLine; return separetedLine;
case S_DF_13: case S_DF_13:
return new String[0];
default: default:
return null; throw new IllegalStateException("Could not process this type of table");
} }
} }