Update FlutterFrontendCompiler.rejectLastDelta to match the signature in CompilerInterface (#6426)

This commit is contained in:
Jason Simmons 2018-10-04 10:06:17 -07:00 committed by GitHub
parent 74e68ff8b1
commit c8755d74c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -42,7 +42,7 @@ class _FlutterFrontendCompiler implements frontend.CompilerInterface{
}
@override
Future<Null> rejectLastDelta() async {
Future<void> rejectLastDelta() async {
return _compiler.rejectLastDelta();
}