From 783deab110645cf855b1c51a2dfbb87a3fa9d43c Mon Sep 17 00:00:00 2001 From: Jason Simmons Date: Mon, 16 Sep 2019 16:26:39 -0700 Subject: [PATCH] Fix the declaration of setSystemGestureExclusionRects to match the PlatformMessageHandler interface (#12306) --- .../android/io/flutter/plugin/platform/PlatformPlugin.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell/platform/android/io/flutter/plugin/platform/PlatformPlugin.java b/shell/platform/android/io/flutter/plugin/platform/PlatformPlugin.java index 789366c6b41..2bb060c1c95 100644 --- a/shell/platform/android/io/flutter/plugin/platform/PlatformPlugin.java +++ b/shell/platform/android/io/flutter/plugin/platform/PlatformPlugin.java @@ -94,7 +94,7 @@ public class PlatformPlugin { } @Override - public void setSystemGestureExclusionRects(@NonNull ArrayList rects) { + public void setSystemGestureExclusionRects(@NonNull ArrayList rects) { PlatformPlugin.this.setSystemGestureExclusionRects(rects); } };