Skip to content

Commit 065fd6c

Browse files
committed
unformat
1 parent 8ab3ea9 commit 065fd6c

File tree

1 file changed

+8
-10
lines changed

1 file changed

+8
-10
lines changed

pkgs/pool/benchmark/for_each_benchmark.dart

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2024, the Dart project authors. Please see the AUTHORS file
1+
// Copyright (c) 2024, the Dart project authors. Please see the AUTHORS file
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

@@ -23,20 +23,18 @@ void main(List<String> args) async {
2323
lastLog == null ||
2424
now.difference(lastLog!) > const Duration(seconds: 1)) {
2525
lastLog = now;
26-
print(
27-
[
28-
now.difference(start),
29-
i.toString().padLeft(10),
30-
fastestIteration.toString().padLeft(7),
31-
fastest!.inMicroseconds.toString().padLeft(9),
32-
].join(' '),
33-
);
26+
print([
27+
now.difference(start),
28+
i.toString().padLeft(10),
29+
fastestIteration.toString().padLeft(7),
30+
fastest!.inMicroseconds.toString().padLeft(9)
31+
].join(' '));
3432
}
3533
}
3634

3735
print(['Elapsed ', 'Iterations', 'Fastest', 'Time (us)'].join(' '));
3836

39-
for (; ; i++) {
37+
for (;; i++) {
4038
watch.reset();
4139

4240
var sum = await pool

0 commit comments

Comments
 (0)