This repository was archived by the owner on Feb 25, 2025. It is now read-only.
Fix SparseArray lookup in PlatformViewsController#32947
Merged
fluttergithubbot merged 1 commit intoflutter:mainfrom Apr 27, 2022
Merged
Fix SparseArray lookup in PlatformViewsController#32947fluttergithubbot merged 1 commit intoflutter:mainfrom
fluttergithubbot merged 1 commit intoflutter:mainfrom
Conversation
jason-simmons
approved these changes
Apr 27, 2022
engine-flutter-autoroll
added a commit
to engine-flutter-autoroll/flutter
that referenced
this pull request
Apr 27, 2022
muditatandon
pushed a commit
to muditatandon/engine
that referenced
this pull request
May 10, 2022
CaseyHillers
pushed a commit
that referenced
this pull request
May 11, 2022
* [flutter_releases] Apply flutter-2.13 candidate.7 CPs to latest roll (#33169) * [flutter_releases] Fix condition in OpacityLayer where it inherits opacity twice (#33085) (#33105) Co-authored-by: Jim Graham <[email protected]> * [flutter_releases] Remove reference to FX_LOG_ALL (#33027) (#33147) It was partially removed in https://fuchsia-review.googlesource.com/c/fuchsia/+/674049; this commit allows remaining references to be removed. Co-authored-by: Tamir Duberstein <[email protected]> Co-authored-by: Jim Graham <[email protected]> Co-authored-by: Tamir Duberstein <[email protected]> * Fix SparseArray lookup in PlatformViewsController (#32947) Co-authored-by: Casey Hillers <[email protected]> Co-authored-by: Jim Graham <[email protected]> Co-authored-by: Tamir Duberstein <[email protected]> Co-authored-by: Emmanuel Garcia <[email protected]>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes b/230038195
This was a mistake.
SparseArray#gettakes a key, not anindex.Alternatively,
valueAt(index)can be used to get the value at the given index.