From c8755d74c17e949ee7c19cd114f084b465dac632 Mon Sep 17 00:00:00 2001 From: Jason Simmons Date: Thu, 4 Oct 2018 10:06:17 -0700 Subject: [PATCH] Update FlutterFrontendCompiler.rejectLastDelta to match the signature in CompilerInterface (#6426) --- frontend_server/lib/server.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend_server/lib/server.dart b/frontend_server/lib/server.dart index cdf958eed8d..fed3766d7c1 100644 --- a/frontend_server/lib/server.dart +++ b/frontend_server/lib/server.dart @@ -42,7 +42,7 @@ class _FlutterFrontendCompiler implements frontend.CompilerInterface{ } @override - Future rejectLastDelta() async { + Future rejectLastDelta() async { return _compiler.rejectLastDelta(); }