From 41bfb453f98acef8aa52e77d35739b07439e0ade Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20Uek=C3=B6tter?= Date: Thu, 15 Dec 2022 22:31:02 +0100 Subject: [PATCH] Remove doc reference to the compute method (flutter/engine#38246) --- engine/src/flutter/lib/ui/platform_dispatcher.dart | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/engine/src/flutter/lib/ui/platform_dispatcher.dart b/engine/src/flutter/lib/ui/platform_dispatcher.dart index 20349ded2fe..6ffc0c5959f 100644 --- a/engine/src/flutter/lib/ui/platform_dispatcher.dart +++ b/engine/src/flutter/lib/ui/platform_dispatcher.dart @@ -1156,8 +1156,7 @@ class PlatformDispatcher { /// /// This callback is not directly invoked by errors in child isolates of the /// root isolate. Programs that create new isolates must listen for errors on - /// those isolates and forward the errors to the root isolate. An example of - /// this can be found in the Flutter framework's `compute` function. + /// those isolates and forward the errors to the root isolate. ErrorCallback? get onError => _onError; set onError(ErrorCallback? callback) { _onError = callback;