Skip to content

Commit

Permalink
remove deprecated updateNode argument (flutter#7413)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonahwilliams authored Jan 9, 2019
1 parent 5e33f33 commit 42f449f
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions lib/ui/semantics.dart
Original file line number Diff line number Diff line change
Expand Up @@ -628,8 +628,6 @@ class SemanticsUpdateBuilder extends NativeFieldWrapperClass2 {
Float64List transform,
Int32List childrenInTraversalOrder,
Int32List childrenInHitTestOrder,
@Deprecated('use additionalActions instead')
Int32List customAcccessibilityActions,
Int32List additionalActions,
}) {
if (transform.length != 16)
Expand Down Expand Up @@ -658,7 +656,7 @@ class SemanticsUpdateBuilder extends NativeFieldWrapperClass2 {
transform,
childrenInTraversalOrder,
childrenInHitTestOrder,
additionalActions ?? customAcccessibilityActions,
additionalActions,
);
}
void _updateNode(
Expand Down

0 comments on commit 42f449f

Please sign in to comment.