summaryrefslogtreecommitdiffstats
path: root/lib/Bot/Games/Trait/Method/Formatted.pm
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2009-06-02 00:22:31 -0500
committerJesse Luehrs <doy@tozt.net>2009-06-02 01:16:16 -0500
commitef21a0ac590775dcbd929339827408922046c7d3 (patch)
treedce14736f0bb6f1dd552872612e845506904fc49 /lib/Bot/Games/Trait/Method/Formatted.pm
parentbf67b7d5ea5a353b79b724933e23cbe36acd82c2 (diff)
downloadbot-games-ef21a0ac590775dcbd929339827408922046c7d3.tar.gz
bot-games-ef21a0ac590775dcbd929339827408922046c7d3.zip
convert traits over to use the new exporter
Diffstat (limited to 'lib/Bot/Games/Trait/Method/Formatted.pm')
-rw-r--r--lib/Bot/Games/Trait/Method/Formatted.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Bot/Games/Trait/Method/Formatted.pm b/lib/Bot/Games/Trait/Method/Formatted.pm
index 7e0b986..cdd4c60 100644
--- a/lib/Bot/Games/Trait/Method/Formatted.pm
+++ b/lib/Bot/Games/Trait/Method/Formatted.pm
@@ -1,5 +1,5 @@
package Bot::Games::Trait::Method::Formatted;
-use Moose::Role;
+use Bot::Games::OO::Role;
has formatter => (
is => 'rw',
@@ -17,6 +17,6 @@ sub _munge_formatter {
return $self->associated_metaclass->formatter_for($format);
}
-no Moose::Role;
+no Bot::Games::OO::Role;
1;