summaryrefslogtreecommitdiff
path: root/runtime/ops/process.rs
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2023-05-11 12:04:27 -0400
committerGitHub <noreply@github.com>2023-05-11 12:04:27 -0400
commit18e9f4642cc9ff598105a0d51263e307949c0423 (patch)
treed18d3d475ddd691983dfee0126c73a40f583fc08 /runtime/ops/process.rs
parent78c7ff91e31d900609084a9563d5fd105affd091 (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.rs1
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;