Skip to content

Commit 576ccb2

Browse files
committedJan 28, 2025
Update profile merger
1 parent 7bf0263 commit 576ccb2

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed
 

‎.github/workflows/test-pr.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
java-version: [8, 11, 16, 17, 21]
17+
java-version: [8, 11, 17, 21]
1818

1919
steps:
2020
- uses: actions/checkout@v4
-16 Bytes
Binary file not shown.

‎profile-merger/src/main/java/org/verapdf/ProfileMerger.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ private static void updatePDFUAProfiles(ZipFile zipSource) {
9696
excludedWCAGRules.add(Profiles.ruleIdFromValues(PDFAFlavour.Specification.ISO_14289_1, "7.21.4.2", 2));
9797
generateProfile(zipSource, "WCAG-2-2-Complete.xml", PDFUA_FOLDER, new String[]{"WCAG/2.2", "WCAG/PDF_UA", "1"}, new String[]{}, excludedWCAGRules);
9898
generateProfile(zipSource, WCAG_MACHINE_PROFILE_NAME, PDFUA_FOLDER, new String[]{"WCAG/2.2", "WCAG/PDF_UA", "1"}, new String[]{}, excludedWCAGRules);
99-
List<RuleId> excludedWTPDFRules = new ArrayList<>(excludedWCAGRules);
99+
List<RuleId> excludedWTPDFRules = new ArrayList<>(18);
100100
excludedWTPDFRules.add(Profiles.ruleIdFromValues(PDFAFlavour.Specification.ISO_14289_2, "5", 1));
101101
excludedWTPDFRules.add(Profiles.ruleIdFromValues(PDFAFlavour.Specification.ISO_14289_2, "5", 2));
102102
excludedWTPDFRules.add(Profiles.ruleIdFromValues(PDFAFlavour.Specification.ISO_14289_2, "5", 3));

0 commit comments

Comments
 (0)
Please sign in to comment.