Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Add missing nullable annotation #20505

Merged
merged 1 commit into from
Aug 14, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public void invokeMethod(@NonNull String method, @Nullable Object arguments) {
* @param callback a {@link Result} callback for the invocation result, or null.
*/
@UiThread
public void invokeMethod(String method, @Nullable Object arguments, Result callback) {
public void invokeMethod(String method, @Nullable Object arguments, @Nullable Result callback) {
messenger.send(
name,
codec.encodeMethodCall(new MethodCall(method, arguments)),
Expand Down