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
Ahmed Fwela
2021-12-25 06:31:53 +0200
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
f95251c54e26eb324d3ca27956dc4c6e7e7f3a27
f95251c5
1 parent
e7c5bd95
fix 2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletions
lib/get_instance/src/get_instance.dart
lib/get_instance/src/get_instance.dart
View file @
f95251c
...
...
@@ -165,7 +165,9 @@ class GetInstance {
_InstanceBuilderFactory
<
S
>?
dep
;
if
(
_singl
.
containsKey
(
key
))
{
final
_dep
=
_singl
[
key
];
if
(
_dep
!=
null
&&
_dep
.
isDirty
)
{
if
(
_dep
==
null
||
!
_dep
.
isDirty
)
{
return
;
}
else
{
dep
=
_dep
as
_InstanceBuilderFactory
<
S
>;
}
}
...
...
Please
register
or
login
to post a comment