Remove PathElement::*
[id3fs.git] / lib / ID3FS / PathElement / Boolean.pm
diff --git a/lib/ID3FS/PathElement/Boolean.pm b/lib/ID3FS/PathElement/Boolean.pm
deleted file mode 100644 (file)
index cf7ff80..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-package ID3FS::PathElement::Boolean;
-
-use strict;
-use warnings;
-
-sub new
-{
-    my $proto=shift;
-    my $class=ref($proto) || $proto;
-    my $self={};
-    bless($self,$class);
-
-    $self->{db}=shift;
-    $self->{name}=shift;
-
-    return $self;
-}
-
-sub type { return "boolean"; }
-sub id { return shift->{id}; }
-
-1;