Skip to content

Commit 3e919ce

Browse files
committed
removed unused variable
1 parent 3d0d4ea commit 3e919ce

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

dwds/lib/src/services/web_socket_proxy_service.dart

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -556,15 +556,11 @@ class WebSocketProxyService extends ProxyService {
556556
Map? args,
557557
}) => wrapInErrorHandlerAsync(
558558
'callServiceExtension',
559-
() => _callServiceExtension(method, isolateId: isolateId, args: args),
559+
() => _callServiceExtension(method, args: args),
560560
);
561561

562562
/// Calls a service extension on the client.
563-
Future<Response> _callServiceExtension(
564-
String method, {
565-
String? isolateId,
566-
Map? args,
567-
}) async {
563+
Future<Response> _callServiceExtension(String method, {Map? args}) async {
568564
final requestId = createId();
569565

570566
// Check if there's already a pending service extension with this ID

0 commit comments

Comments
 (0)