unnecessary_override (#9540)

This commit is contained in:
Alexandre Ardhuin 2017-04-22 22:58:21 +02:00 committed by GitHub
parent ad496e142b
commit 26c7411d66
2 changed files with 0 additions and 6 deletions

View File

@ -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.

View File

@ -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.