From 4519ecac36d8c50665152c646be7d986ef38b013 Mon Sep 17 00:00:00 2001 From: Takayuki Maeda Date: Sat, 9 Oct 2021 15:53:54 +0900 Subject: [PATCH] remove alias --- src/components/properties.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/properties.rs b/src/components/properties.rs index 5c9299d..acd6ee4 100644 --- a/src/components/properties.rs +++ b/src/components/properties.rs @@ -7,7 +7,7 @@ use crate::database::Pool; use crate::event::Key; use anyhow::Result; use async_trait::async_trait; -use database_tree::{Database, Table as DTable}; +use database_tree::{Database, Table}; use tui::{ backend::Backend, layout::{Constraint, Direction, Layout, Rect}, @@ -63,7 +63,7 @@ impl PropertiesComponent { pub async fn update( &mut self, database: Database, - table: DTable, + table: Table, pool: &Box, ) -> Result<()> { self.column_table.reset();