Skip to content

Commit

Permalink
fix: PositionBodyComponent had an async onMount, without needing (#1424)
Browse files Browse the repository at this point in the history
  • Loading branch information
erickzanardo committed Mar 8, 2022
1 parent 29dd09c commit 7b0fd20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/flame_forge2d/lib/position_body_component.dart
Expand Up @@ -27,7 +27,7 @@ abstract class PositionBodyComponent<T extends Forge2DGame,

@mustCallSuper
@override
Future<void> onMount() async {
void onMount() {
super.onMount();
assert(
positionComponent != null,
Expand Down

0 comments on commit 7b0fd20

Please sign in to comment.