Skip to content

Commit a21ff4c

Browse files
committed
Fix deprecated message
1 parent 79f7016 commit a21ff4c

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

bin/benchmark/action_benchmark.dart

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,7 @@ void main() {
66
runChars('action - cast', any().cast(), 255);
77
runChars('action - castList', any().star().castList(), 255);
88
runChars('action - flatten', any().flatten(), 255);
9-
runChars('action - map (no side-effects)',
10-
any().map((_) {}, hasSideEffects: false), 255);
11-
runChars('action - map (with side-effects)',
12-
any().map((_) {}, hasSideEffects: true), 255);
9+
runChars('action - map', any().map((_) {}), 255);
1310
runChars('action - permute', any().star().permute([0]), 255);
1411
runChars('action - pick', any().star().pick(0), 255);
1512
runChars('action - token', any().token(), 255);

0 commit comments

Comments
 (0)