We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c904b4d commit c9f0a42Copy full SHA for c9f0a42
shell/platform/darwin/ios/framework/Source/FlutterCallbackCache.mm
@@ -16,7 +16,7 @@ + (FlutterCallbackInformation*)lookupCallbackInformation:(int64_t)handle {
16
if (info == nullptr) {
17
return nil;
18
}
19
- FlutterCallbackInformation* new_info = [[[FlutterCallbackInformation alloc] init] autorelease];
+ FlutterCallbackInformation* new_info = [[FlutterCallbackInformation alloc] init];
20
new_info.callbackName = [NSString stringWithUTF8String:info->name.c_str()];
21
new_info.callbackClassName = [NSString stringWithUTF8String:info->class_name.c_str()];
22
new_info.callbackLibraryPath = [NSString stringWithUTF8String:info->library_path.c_str()];
0 commit comments