Unverified Commit 4aad63a6 authored by Nate Bosch's avatar Nate Bosch Committed by GitHub

Ignore upcoming warning for unnecessary override (#93353)

parent 858a3287
...@@ -346,6 +346,7 @@ class FlutterPlatform extends PlatformPlugin { ...@@ -346,6 +346,7 @@ class FlutterPlatform extends PlatformPlugin {
} }
@override @override
// ignore: override_on_non_overriding_member
StreamChannel<dynamic> loadChannel(String path, SuitePlatform platform) { StreamChannel<dynamic> loadChannel(String path, SuitePlatform platform) {
if (_testCount > 0) { if (_testCount > 0) {
// Fail if there will be a port conflict. // Fail if there will be a port conflict.
......
...@@ -485,6 +485,7 @@ class FlutterWebPlatform extends PlatformPlugin { ...@@ -485,6 +485,7 @@ class FlutterWebPlatform extends PlatformPlugin {
} }
@override @override
// ignore: override_on_non_overriding_member
StreamChannel<dynamic> loadChannel(String path, SuitePlatform platform) => StreamChannel<dynamic> loadChannel(String path, SuitePlatform platform) =>
throw UnimplementedError(); throw UnimplementedError();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment