diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2023-05-11 12:04:27 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-11 12:04:27 -0400 |
commit | 18e9f4642cc9ff598105a0d51263e307949c0423 (patch) | |
tree | d18d3d475ddd691983dfee0126c73a40f583fc08 /runtime/ops/process.rs | |
parent | 78c7ff91e31d900609084a9563d5fd105affd091 (diff) |
fix(lsp): hard to soft error when unable to get completion info (#19091)
Diffstat (limited to 'runtime/ops/process.rs')
-rw-r--r-- | runtime/ops/process.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/runtime/ops/process.rs b/runtime/ops/process.rs index 76db23d02..a2eace8b6 100644 --- a/runtime/ops/process.rs +++ b/runtime/ops/process.rs @@ -597,7 +597,6 @@ mod deprecated { #[cfg(not(unix))] pub fn kill(pid: i32, signal: &str) -> Result<(), AnyError> { - use deno_core::error::type_error; use std::io::Error; use std::io::ErrorKind::NotFound; use winapi::shared::minwindef::DWORD; |