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

Commit 783deab

Browse files
Fix the declaration of setSystemGestureExclusionRects to match the PlatformMessageHandler interface (#12306)
1 parent 5a8da65 commit 783deab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ public List<Rect> getSystemGestureExclusionRects() {
9494
}
9595

9696
@Override
97-
public void setSystemGestureExclusionRects(@NonNull ArrayList rects) {
97+
public void setSystemGestureExclusionRects(@NonNull ArrayList<Rect> rects) {
9898
PlatformPlugin.this.setSystemGestureExclusionRects(rects);
9999
}
100100
};

0 commit comments

Comments
 (0)