Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flutter_package
/
fluttertpc_get
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
zenalex
2021-09-10 17:10:24 +0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
9bd44f86e39edd83285f5affa8987c133b22f3ec
9bd44f86
1 parent
8a8c6424
markAsDirty must use permenent property
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
lib/get_instance/src/get_instance.dart
lib/get_instance/src/get_instance.dart
View file @
9bd44f8
...
...
@@ -239,7 +239,7 @@ class GetInstance {
final
newKey
=
key
??
_getKey
(
S
,
tag
);
if
(
_singl
.
containsKey
(
newKey
))
{
final
dep
=
_singl
[
newKey
];
if
(
dep
!=
null
)
{
if
(
dep
!=
null
&&
!
dep
.
permanent
)
{
dep
.
isDirty
=
true
;
}
}
...
...
Please
register
or
login
to post a comment