Remove @override annotations from things which are not overrides (#180417)

These annotations are applied to top-level elements, which override
nothing.

A new warning from the Analyzer will start to report these.
This commit is contained in:
Sam Rawlins 2025-12-31 15:22:20 -08:00 committed by GitHub
parent 33bde0ab44
commit 0f2514a61d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 0 additions and 2 deletions

View File

@ -405,7 +405,6 @@ class DelegatingLogger implements Logger {
/// the first delegate with the matching type.
///
/// Throws a [StateError] if no matching delegate is found.
@override
T asLogger<T extends Logger>(Logger logger) {
final original = logger;
while (true) {

View File

@ -1168,7 +1168,6 @@ class FakeIOSDeployDebugger extends Fake implements IOSDeployDebugger {
}
}
@override
class FakeXcode extends Fake implements Xcode {
FakeXcode({this.version});