Skip to content

Commit 83197b2

Browse files
committed
Fixed overrides after rebase
1 parent 17f71a3 commit 83197b2

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

Diff for: pkgs/http/lib/src/browser_client.dart

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ class BrowserClient extends BaseClient {
4949
/// Sends an HTTP request and asynchronously returns the response.
5050
@override
5151
Future<StreamedResponse> send(
52-
BaseRequest request,
52+
BaseRequest request, {
5353
Progress? onSendProgress,
54-
) async {
54+
}) async {
5555
if (_isClosed) {
5656
throw ClientException(
5757
'HTTP request failed. Client is already closed.', request.url);

Diff for: pkgs/http/test/io/client_test.dart

+4-4
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,19 @@ import '../utils.dart';
1717
class TestClient extends http.BaseClient {
1818
@override
1919
Future<http.StreamedResponse> send(
20-
http.BaseRequest request,
20+
http.BaseRequest request, {
2121
http.Progress? onSendProgress,
22-
) {
22+
}) {
2323
throw UnimplementedError();
2424
}
2525
}
2626

2727
class TestClient2 extends http.BaseClient {
2828
@override
2929
Future<http.StreamedResponse> send(
30-
http.BaseRequest request,
30+
http.BaseRequest request, {
3131
http.Progress? onSendProgress,
32-
) {
32+
}) {
3333
throw UnimplementedError();
3434
}
3535
}

Diff for: pkgs/http/test/io/http_test.dart

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ import '../utils.dart';
1313
class TestClient extends http.BaseClient {
1414
@override
1515
Future<http.StreamedResponse> send(
16-
http.BaseRequest request,
16+
http.BaseRequest request, {
1717
http.Progress? onSendProgress,
18-
) {
18+
}) {
1919
throw UnimplementedError();
2020
}
2121
}

0 commit comments

Comments
 (0)