summaryrefslogtreecommitdiffstats
path: root/lib/Bot/Games/Trait/Method/Formatted.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Bot/Games/Trait/Method/Formatted.pm')
-rw-r--r--lib/Bot/Games/Trait/Method/Formatted.pm22
1 files changed, 0 insertions, 22 deletions
diff --git a/lib/Bot/Games/Trait/Method/Formatted.pm b/lib/Bot/Games/Trait/Method/Formatted.pm
deleted file mode 100644
index cdd4c60..0000000
--- a/lib/Bot/Games/Trait/Method/Formatted.pm
+++ /dev/null
@@ -1,22 +0,0 @@
-package Bot::Games::Trait::Method::Formatted;
-use Bot::Games::OO::Role;
-
-has formatter => (
- is => 'rw',
- isa => 'CodeRef',
- default => sub { sub {
- warn "no formatter specified!";
- return @_;
- } },
-);
-
-sub _munge_formatter {
- my $self = shift;
- my ($format) = @_;
- return $format if ref($format) eq 'CODE';
- return $self->associated_metaclass->formatter_for($format);
-}
-
-no Bot::Games::OO::Role;
-
-1;