Skip to content

Commit

Permalink
fix ASP .xls format
Browse files Browse the repository at this point in the history
  • Loading branch information
rkrenn committed Apr 6, 2024
1 parent fcbbb30 commit 9545796
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ public class AspRowProcessor extends RowProcessor {
private static final int BATCH_RELEASE_COLUMN_INDEX = 11;
private static final int BATCH_TESTING_COLUMN_INDEX = 12;
private static final int BATCH_TESTING_EXCLUSION_COLUMN_INDEX = 13;
private static final int PRESCRIPTION_COLUMN_INDEX = 14;
private static final int DISTRIBUTION_COLUMN_INDEX = 15;
private static final int HUMAN_COLUMN_INDEX = 16;
private static final int CATEGORY_COLUMN_INDEX = 17;
private static final int PRESCRIPTION_COLUMN_INDEX = 15;
private static final int DISTRIBUTION_COLUMN_INDEX = 16;
private static final int HUMAN_COLUMN_INDEX = 17;
private static final int CATEGORY_COLUMN_INDEX = 18;
private final static Pattern SUBSTANCES_SEPARATOR_REGEXP = Pattern.compile(";");
private final static Pattern ATC_CODES_SEPARATOR_REGEXP = Pattern.compile(";");

Expand Down

0 comments on commit 9545796

Please sign in to comment.