Skip to content

Commit

Permalink
Fix ProfilesMerger
Browse files Browse the repository at this point in the history
  • Loading branch information
MaximPlusov committed Nov 23, 2023
1 parent cc8fec9 commit dd9aedf
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 dd9aedf

Please sign in to comment.