From a59641baa7d4eb2e680799127af33052aa85a579 Mon Sep 17 00:00:00 2001 From: Ben Konyi Date: Thu, 9 Aug 2018 12:28:51 -0700 Subject: [PATCH] Fixed invalid call site of runWithEntrypointAndCallback --- .../darwin/ios/framework/Source/FlutterHeadlessDartRunner.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell/platform/darwin/ios/framework/Source/FlutterHeadlessDartRunner.mm b/shell/platform/darwin/ios/framework/Source/FlutterHeadlessDartRunner.mm index 8db85fd3b5664..e35089e03d44f 100644 --- a/shell/platform/darwin/ios/framework/Source/FlutterHeadlessDartRunner.mm +++ b/shell/platform/darwin/ios/framework/Source/FlutterHeadlessDartRunner.mm @@ -111,7 +111,7 @@ - (void)runWithEntrypointAndLibraryUri:(NSString*)entrypoint libraryUri:(NSStrin } - (void)runWithEntrypoint:(NSString*)entrypoint { - [self runWithEntrypointAndCallback:entrypoint libraryUri:nil completion:nil]; + [self runWithEntrypointAndLibraryUri:entrypoint libraryUri:nil]; } #pragma mark - FlutterBinaryMessenger