Skip to content

Commit

Permalink
Optimized imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Futsch1 committed Jan 8, 2022
1 parent 98e7343 commit 3d9933f
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/main_window.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,14 @@ use std::cell::RefCell;
use std::fmt::Debug;
use std::path::Path;
use std::rc::Rc;
use std::sync::Arc;
use std::sync::Mutex;
use std::sync::{Arc, Mutex};
use std::thread;

use crate::controller::events_controller::EventsController;
use crate::controller::items_controller::ItemsController;
use crate::item_sort_list::ItemList;
use crate::misc::images::get_empty_image;
use crate::persistence::json::JsonPersistence;
use crate::persistence::json::{get_project_filename, get_settings_filename};
use crate::persistence::json::{JsonPersistence, get_project_filename, get_settings_filename};
use crate::persistence::model_to_enum::model_to_enum;
use crate::persistence::settings::Settings;
use crate::synchronize::Synchronizer;
Expand Down

0 comments on commit 3d9933f

Please sign in to comment.