Commit 26c7411d authored by Alexandre Ardhuin's avatar Alexandre Ardhuin Committed by GitHub

unnecessary_override (#9540)

parent ad496e14
......@@ -210,9 +210,6 @@ class GetText extends CommandWithTarget {
/// Deserializes the command from JSON generated by [serialize].
GetText.deserialize(Map<String, dynamic> json) : super.deserialize(json);
@override
Map<String, String> serialize() => super.serialize();
}
/// The result of the [GetText] command.
......
......@@ -15,9 +15,6 @@ class Tap extends CommandWithTarget {
/// Deserializes this command from JSON generated by [serialize].
Tap.deserialize(Map<String, String> json) : super.deserialize(json);
@override
Map<String, String> serialize() => super.serialize();
}
/// The result of a [Tap] command.
......
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