1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-22 15:24:46 -05:00

chore: remove stale comments (#16491)

Just a drive-by, noticed some stale comments that haven't been removed
earlier.
This commit is contained in:
Bartek Iwańczuk 2022-10-31 14:14:35 +01:00 committed by GitHub
parent b07a753756
commit c962cd4241
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -193,8 +193,6 @@ impl ProcState {
let maybe_inspector_server =
cli_options.resolve_inspector_server().map(Arc::new);
// FIXME(bartlomieju): `NodeEsmResolver` is not aware of JSX resolver
// created below
let maybe_import_map_resolver =
maybe_import_map.clone().map(ImportMapResolver::new);
let maybe_jsx_resolver = cli_options
@ -477,8 +475,6 @@ impl ProcState {
}
/// Add the builtin node modules to the graph data.
// FIXME(bartlomieju): appears this function can be called more than once
// if we have npm imports
pub async fn prepare_node_std_graph(&self) -> Result<(), AnyError> {
if self.node_std_graph_prepared.load(Ordering::Relaxed) {
return Ok(());