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
wbemanuel
2020-09-29 13:06:38 +0200
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Committed by
GitHub
2020-09-29 13:06:38 +0200
Commit
1dc8040e46beb802256c457596796add9ddc7d51
1dc8040e
1 parent
d418403f
Fix exception typo in get_instance
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
packages/get_instance/lib/src/get_instance.dart
packages/get_instance/lib/src/get_instance.dart
View file @
1dc8040
...
...
@@ -258,9 +258,9 @@ class GetInstance {
if
(
isRegistered
<
S
>(
tag:
tag
))
{
if
(
_singl
[
key
]
==
null
)
{
if
(
tag
==
null
)
{
throw
'Class "
$S
" is not register'
;
throw
'Class "
$S
" is not register
ed
'
;
}
else
{
throw
'Class "
$S
" with tag "
$tag
" is not register'
;
throw
'Class "
$S
" with tag "
$tag
" is not register
ed
'
;
}
}
...
...
Please
register
or
login
to post a comment