Remove unused imports
This commit is contained in:
parent
19c360d42b
commit
96b51280ab
4 changed files with 0 additions and 18 deletions
|
@ -29,14 +29,12 @@ use error::HabitErrorKind as HEK;
|
||||||
use error::*;
|
use error::*;
|
||||||
use iter::HabitInstanceStoreIdIterator;
|
use iter::HabitInstanceStoreIdIterator;
|
||||||
use util::date_to_string;
|
use util::date_to_string;
|
||||||
use util::date_from_string;
|
|
||||||
use util::IsHabitCheck;
|
use util::IsHabitCheck;
|
||||||
|
|
||||||
use libimagentrylink::internal::InternalLinker;
|
use libimagentrylink::internal::InternalLinker;
|
||||||
use libimagstore::store::Store;
|
use libimagstore::store::Store;
|
||||||
use libimagstore::store::FileLockEntry;
|
use libimagstore::store::FileLockEntry;
|
||||||
use libimagstore::store::Entry;
|
use libimagstore::store::Entry;
|
||||||
use libimagstore::iter::get::StoreIdGetIteratorExtension;
|
|
||||||
use libimagstore::storeid::StoreId;
|
use libimagstore::storeid::StoreId;
|
||||||
use libimagstore::storeid::IntoStoreId;
|
use libimagstore::storeid::IntoStoreId;
|
||||||
use libimagstore::storeid::StoreIdIterator;
|
use libimagstore::storeid::StoreIdIterator;
|
||||||
|
@ -234,7 +232,6 @@ pub mod builder {
|
||||||
use error::HabitErrorKind as HEK;
|
use error::HabitErrorKind as HEK;
|
||||||
use error::*;
|
use error::*;
|
||||||
use util::date_to_string;
|
use util::date_to_string;
|
||||||
use util::date_from_string;
|
|
||||||
|
|
||||||
pub struct HabitBuilder {
|
pub struct HabitBuilder {
|
||||||
name: Option<String>,
|
name: Option<String>,
|
||||||
|
|
|
@ -22,10 +22,8 @@ use toml::Value;
|
||||||
use toml_query::read::TomlValueReadExt;
|
use toml_query::read::TomlValueReadExt;
|
||||||
use toml_query::set::TomlValueSetExt;
|
use toml_query::set::TomlValueSetExt;
|
||||||
|
|
||||||
use error::HabitError as HE;
|
|
||||||
use error::HabitErrorKind as HEK;
|
use error::HabitErrorKind as HEK;
|
||||||
use error::*;
|
use error::*;
|
||||||
use habit::HabitTemplate;
|
|
||||||
use util::*;
|
use util::*;
|
||||||
|
|
||||||
use libimagstore::store::Entry;
|
use libimagstore::store::Entry;
|
||||||
|
|
|
@ -17,17 +17,9 @@
|
||||||
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
//
|
//
|
||||||
|
|
||||||
use toml::Value;
|
|
||||||
use toml_query::read::TomlValueReadExt;
|
|
||||||
|
|
||||||
use libimagstore::store::FileLockEntry;
|
|
||||||
use libimagstore::store::Store;
|
|
||||||
use libimagstore::storeid::StoreIdIterator;
|
use libimagstore::storeid::StoreIdIterator;
|
||||||
use libimagstore::storeid::StoreId;
|
use libimagstore::storeid::StoreId;
|
||||||
|
|
||||||
use error::HabitError as HE;
|
|
||||||
use error::HabitErrorKind as HEK;
|
|
||||||
use error::*;
|
|
||||||
use util::IsHabitCheck;
|
use util::IsHabitCheck;
|
||||||
|
|
||||||
pub struct HabitTemplateStoreIdIterator(StoreIdIterator);
|
pub struct HabitTemplateStoreIdIterator(StoreIdIterator);
|
||||||
|
|
|
@ -17,17 +17,12 @@
|
||||||
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
//
|
//
|
||||||
|
|
||||||
use chrono::NaiveDate;
|
|
||||||
|
|
||||||
use error::Result;
|
use error::Result;
|
||||||
use error::HabitError as HE;
|
|
||||||
use habit::builder::HabitBuilder;
|
use habit::builder::HabitBuilder;
|
||||||
use iter::HabitTemplateStoreIdIterator;
|
use iter::HabitTemplateStoreIdIterator;
|
||||||
use iter::HabitInstanceStoreIdIterator;
|
use iter::HabitInstanceStoreIdIterator;
|
||||||
|
|
||||||
use libimagstore::store::Store;
|
use libimagstore::store::Store;
|
||||||
use libimagstore::store::FileLockEntry;
|
|
||||||
use libimagstore::storeid::StoreIdIterator;
|
|
||||||
|
|
||||||
/// Extension trait for libimagstore::store::Store which is basically our Habit-Store
|
/// Extension trait for libimagstore::store::Store which is basically our Habit-Store
|
||||||
pub trait HabitStore {
|
pub trait HabitStore {
|
||||||
|
|
Loading…
Reference in a new issue