aboutsummaryrefslogtreecommitdiff
path: root/common/src/impl.rs
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2023-08-07 11:10:10 +0200
committermetamuffin <metamuffin@disroot.org>2023-08-07 11:59:59 +0200
commitdc7ed1ccaa5e727b3ab0569fd7fe56a2d0084bd5 (patch)
treeeb724ec5c0de92abef03549365eba01e07c06d90 /common/src/impl.rs
parent55eba6fdc6742d2850d003059220284bace059fc (diff)
downloadjellything-dc7ed1ccaa5e727b3ab0569fd7fe56a2d0084bd5.tar
jellything-dc7ed1ccaa5e727b3ab0569fd7fe56a2d0084bd5.tar.bz2
jellything-dc7ed1ccaa5e727b3ab0569fd7fe56a2d0084bd5.tar.zst
node sort ui
Diffstat (limited to 'common/src/impl.rs')
-rw-r--r--common/src/impl.rs8
1 files changed, 1 insertions, 7 deletions
diff --git a/common/src/impl.rs b/common/src/impl.rs
index d7759af..55364ab 100644
--- a/common/src/impl.rs
+++ b/common/src/impl.rs
@@ -3,7 +3,7 @@
which is licensed under the GNU Affero General Public License (version 3); see /COPYING.
Copyright (C) 2023 metamuffin <metamuffin.org>
*/
-use crate::{NodeKind, SourceTrack, SourceTrackKind};
+use crate::{SourceTrack, SourceTrackKind};
impl SourceTrackKind {
pub fn letter(&self) -> char {
@@ -34,9 +34,3 @@ impl std::fmt::Display for SourceTrack {
))
}
}
-
-impl Default for NodeKind {
- fn default() -> Self {
- Self::Collection
- }
-}