Skip to content

Commit a6e53f9

Browse files
chore: format code with dart format
1 parent 5c3d1ef commit a6e53f9

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

pkgs/collection/benchmark/dataset_generator.dart

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
/// Ensures all algorithms are tested on the exact same data.
88
library;
99

10-
1110
import 'dart:math';
1211

1312
const size = 50000;
@@ -51,4 +50,4 @@ List<List<int>> _generatePathological() {
5150
if (i.isOdd) base[i],
5251
];
5352
return List.generate(count, (_) => List<int>.from(pathological));
54-
}
53+
}

pkgs/collection/benchmark/sort_benchmark.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,4 +369,4 @@ void _movingInsertionSortBaseline<E, K>(
369369
target.setRange(min + 1, targetOffset + i + 1, target, min);
370370
target[min] = element;
371371
}
372-
}
372+
}

0 commit comments

Comments
 (0)