Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
5b828764
Commit
5b828764
authored
Feb 04, 2019
by
Sander Kersten
Committed by
Hans Muller
Feb 04, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove leftover of GlobalKey removal listeners (#27432)
parent
28fc34c0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
4 deletions
+1
-4
framework.dart
packages/flutter/lib/src/widgets/framework.dart
+1
-4
No files found.
packages/flutter/lib/src/widgets/framework.dart
View file @
5b828764
...
...
@@ -138,7 +138,6 @@ abstract class GlobalKey<T extends State<StatefulWidget>> extends Key {
const
GlobalKey
.
constructor
()
:
super
.
empty
();
static
final
Map
<
GlobalKey
,
Element
>
_registry
=
<
GlobalKey
,
Element
>{};
static
final
Set
<
GlobalKey
>
_removedKeys
=
HashSet
<
GlobalKey
>();
static
final
Set
<
Element
>
_debugIllFatedElements
=
HashSet
<
Element
>();
static
final
Map
<
GlobalKey
,
Element
>
_debugReservations
=
<
GlobalKey
,
Element
>{};
...
...
@@ -164,10 +163,8 @@ abstract class GlobalKey<T extends State<StatefulWidget>> extends Key {
}
return
true
;
}());
if
(
_registry
[
this
]
==
element
)
{
if
(
_registry
[
this
]
==
element
)
_registry
.
remove
(
this
);
_removedKeys
.
add
(
this
);
}
}
void
_debugReserveFor
(
Element
parent
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment