chore: clippy

This commit is contained in:
nathan 2024-09-16 16:07:29 +08:00
parent c2b194b1d2
commit 924df56d28
3 changed files with 1 additions and 2 deletions

View File

@ -1836,6 +1836,7 @@ struct DatabaseViewOperationImpl {
task_scheduler: Arc<TokioRwLock<TaskDispatcher>>,
cell_cache: CellCache,
editor_by_view_id: Arc<RwLock<EditorByViewId>>,
#[allow(dead_code)]
database_cancellation: Arc<RwLock<Option<CancellationToken>>>,
}

View File

@ -5,7 +5,6 @@ use std::sync::Arc;
use collab_database::fields::{Field, TypeOptionData};
use collab_database::rows::{Cells, Row, RowId};
use flowy_error::{FlowyError, FlowyResult};
use futures::executor::block_on;
use serde::de::DeserializeOwned;
use serde::Serialize;
use tracing::trace;

View File

@ -5,7 +5,6 @@ use async_trait::async_trait;
use collab_database::fields::Field;
use collab_database::rows::{Cell, Row, RowId};
use flowy_error::FlowyResult;
use tracing::trace;
use crate::entities::FieldType;
use crate::services::field::TypeOption;