From 23a2f664d853ad2a50555d1506389b5f5811bb4d Mon Sep 17 00:00:00 2001 From: Aaron Clarke Date: Tue, 4 Jan 2022 10:13:33 -0800 Subject: [PATCH] Removed "UiThread" annotation from MethodChannel#Result. --- .../android/io/flutter/plugin/common/MethodChannel.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/shell/platform/android/io/flutter/plugin/common/MethodChannel.java b/shell/platform/android/io/flutter/plugin/common/MethodChannel.java index 795bd70ba091d..5e187cf94cd47 100644 --- a/shell/platform/android/io/flutter/plugin/common/MethodChannel.java +++ b/shell/platform/android/io/flutter/plugin/common/MethodChannel.java @@ -201,7 +201,6 @@ public interface Result { * codec. For instance, if you are using {@link StandardMessageCodec} (default), please see * its documentation on what types are supported. */ - @UiThread void success(@Nullable Object result); /** @@ -213,11 +212,9 @@ public interface Result { * supported by the codec. For instance, if you are using {@link StandardMessageCodec} * (default), please see its documentation on what types are supported. */ - @UiThread void error(String errorCode, @Nullable String errorMessage, @Nullable Object errorDetails); /** Handles a call to an unimplemented method. */ - @UiThread void notImplemented(); }