Skip to content

Commit

Permalink
Merge pull request #143 from veraPDF/profiles_merger
Browse files Browse the repository at this point in the history
Fix ProfilesMerger
  • Loading branch information
MaximPlusov authored Nov 23, 2023
2 parents d33ea1d + dd9aedf commit a86845b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public static void mergeAtomicProfiles(OutputStream out,
final String description,
final String creator) throws IOException, JAXBException {
SortedSet<Rule> rules = new TreeSet<>(new RuleComparator());
Set<Variable> variables = new HashSet<>();
SortedSet<Variable> variables = new TreeSet<>(Comparator.comparing(Variable::getName));
PDFAFlavour flavour = null;

for (File dir : root) {
Expand Down

0 comments on commit a86845b

Please sign in to comment.