diff options
author | Gurwinder Singh <vargwin@gmail.com> | 2020-01-04 15:50:52 +0530 |
---|---|---|
committer | Ry Dahl <ry@tinyclouds.org> | 2020-01-04 05:20:52 -0500 |
commit | 9f6bab6010abb26814d6d7a163db24fa5965d09c (patch) | |
tree | d680722aeffb6535de0f49689a4dbf8763836b2c /cli/global_state.rs | |
parent | 70b1be6ff459ebd2bf57b7788ab7d66c1f375b29 (diff) |
Use async at places, use &self instead of self: &Self (#3594)
Diffstat (limited to 'cli/global_state.rs')
-rw-r--r-- | cli/global_state.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/global_state.rs b/cli/global_state.rs index d3f29c999..0f7416e98 100644 --- a/cli/global_state.rs +++ b/cli/global_state.rs @@ -205,7 +205,7 @@ impl ThreadSafeGlobalState { } pub fn check_dyn_import( - self: &Self, + &self, module_specifier: &ModuleSpecifier, ) -> Result<(), ErrBox> { let u = module_specifier.as_url(); |