Fix the declaration of setSystemGestureExclusionRects to match the PlatformMessageHandler interface (#12306)

This commit is contained in:
Jason Simmons 2019-09-16 16:26:39 -07:00 committed by GitHub
parent 5a8da65592
commit 783deab110
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -94,7 +94,7 @@ public class PlatformPlugin {
}
@Override
public void setSystemGestureExclusionRects(@NonNull ArrayList rects) {
public void setSystemGestureExclusionRects(@NonNull ArrayList<Rect> rects) {
PlatformPlugin.this.setSystemGestureExclusionRects(rects);
}
};