Skip to content

Commit 0f53352

Browse files
committed
fix: lint
1 parent c2ecf28 commit 0f53352

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

crates/pglt_lsp/src/handlers/text_document.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use pglt_workspace::workspace::{
77
ChangeFileParams, ChangeParams, CloseFileParams, GetFileContentParams, OpenFileParams,
88
};
99
use tower_lsp::lsp_types;
10-
use tracing::{error, field};
10+
use tracing::error;
1111

1212
/// Handler for `textDocument/didOpen` LSP notification
1313
#[tracing::instrument(level = "debug", skip(session), err)]

crates/pglt_workspace/src/workspace/server.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use std::{fs, panic::RefUnwindSafe, path::Path, sync::RwLock};
33
use analyser::AnalyserVisitorBuilder;
44
use async_helper::run_async;
55
use change::StatementChange;
6-
use dashmap::{DashMap, DashSet};
6+
use dashmap::DashMap;
77
use db_connection::DbConnection;
88
use document::{Document, Statement};
99
use futures::{StreamExt, stream};

0 commit comments

Comments
 (0)