summaryrefslogtreecommitdiffstats
path: root/src/selection_type.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/selection_type.rs')
-rw-r--r--src/selection_type.rs6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/selection_type.rs b/src/selection_type.rs
index e8341f4..be2012c 100644
--- a/src/selection_type.rs
+++ b/src/selection_type.rs
@@ -8,11 +8,5 @@ pub enum SelectionType {
impl SelectionType {
pub fn respects(self, constraint: Self) -> bool {
constraint == Self::Any || self == constraint
- //use SelectionType::*;
- //match (self, constraint) {
- // (_, Undefined) => true, // no constraint
- // (File, File) => true,
- // (Directory, Directory) => true
- //}
}
}