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
8f7b2f9b
Unverified
Commit
8f7b2f9b
authored
May 07, 2020
by
Jonah Williams
Committed by
GitHub
May 07, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[flutter_tools] throw StateError instead of null (#56481)
parent
85cd4819
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
flutter_web_platform.dart
...ages/flutter_tools/lib/src/test/flutter_web_platform.dart
+3
-3
No files found.
packages/flutter_tools/lib/src/test/flutter_web_platform.dart
View file @
8f7b2f9b
...
...
@@ -335,7 +335,7 @@ class FlutterWebPlatform extends PlatformPlugin {
Object
message
,
)
async
{
if
(
_closed
)
{
return
null
;
throw
StateError
(
'Load called on a closed FlutterWebPlatform'
)
;
}
final
PoolResource
lockResource
=
await
_suiteLock
.
request
();
...
...
@@ -348,7 +348,7 @@ class FlutterWebPlatform extends PlatformPlugin {
}
if
(
_closed
)
{
return
null
;
throw
StateError
(
'Load called on a closed FlutterWebPlatform'
)
;
}
final
Uri
suiteUrl
=
url
.
resolveUri
(
globals
.
fs
.
path
.
toUri
(
globals
.
fs
.
path
.
withoutExtension
(
...
...
@@ -360,7 +360,7 @@ class FlutterWebPlatform extends PlatformPlugin {
lockResource
.
release
();
});
if
(
_closed
)
{
return
null
;
throw
StateError
(
'Load called on a closed FlutterWebPlatform'
)
;
}
return
suite
;
}
...
...
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