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

Commit 21bb48c

Browse files
author
Emmanuel Garcia
committed
remove nullable context
1 parent 03ead17 commit 21bb48c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shell/platform/android/io/flutter/plugin/platform/PlatformViewFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public PlatformViewFactory(@Nullable MessageCodec<Object> createArgsCodec) {
2828
* null, or no arguments were sent from the Flutter app.
2929
*/
3030
@NonNull
31-
public abstract PlatformView create(@Nullable Context context, int viewId, @Nullable Object args);
31+
public abstract PlatformView create(Context context, int viewId, @Nullable Object args);
3232

3333
/** Returns the codec to be used for decoding the args parameter of {@link #create}. */
3434
@Nullable

0 commit comments

Comments
 (0)