Skip to content

Commit

Permalink
Fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
IotaBread committed Aug 11, 2023
1 parent 8609c2d commit 3c43b6b
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,9 @@ private static Comparator<EntryTreeNode<EntryMapping>> mappingComparator() {
@Override
public void write(EntryTree<EntryMapping> mappings, MappingDelta<EntryMapping> delta, Path path, ProgressListener progress, MappingSaveParameters parameters) {
List<EntryTreeNode<EntryMapping>> classes = StreamSupport.stream(mappings.spliterator(), false)
.filter(node -> node.getEntry() instanceof ClassEntry)
.sorted(mappingComparator())
.toList();
.filter(node -> node.getEntry() instanceof ClassEntry)
.sorted(mappingComparator())
.toList();

try (PrintWriter writer = new LfPrintWriter(Files.newBufferedWriter(path))) {
writer.println("tiny\t2\t" + MINOR_VERSION + "\t" + this.obfHeader + "\t" + this.deobfHeader);
Expand Down

0 comments on commit 3c43b6b

Please sign in to comment.