Skip to content

Commit

Permalink
fix _ var names
Browse files Browse the repository at this point in the history
  • Loading branch information
mkorbel1 committed Sep 30, 2024
1 parent 94c87fc commit 4319237
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/simulator.dart
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ abstract class Simulator {
(_maxSimTime < 0 || _currentTimestamp < _maxSimTime)) {
try {
await tick();
} catch (__, _) {
} catch (_, __) {
// trigger the end of simulation if an error occurred
_simulationEndedCompleter.complete();

Expand Down

0 comments on commit 4319237

Please sign in to comment.