Skip to content

Commit

Permalink
Fixed the INFO: The referenced identifier is a wildcard.
Browse files Browse the repository at this point in the history
  • Loading branch information
jumperchen committed Sep 19, 2024
1 parent 7a55725 commit fcd1a36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/engine/socket.dart
Original file line number Diff line number Diff line change
Expand Up @@ -669,5 +669,5 @@ class Socket extends EventEmitter {
/// @api private
///
List filterUpgrades(List upgrades) =>
transports.where((_) => upgrades.contains(_)).toList();
transports.where((transport) => upgrades.contains(transport)).toList();
}

0 comments on commit fcd1a36

Please sign in to comment.