summaryrefslogtreecommitdiffstats
path: root/lib/Bot/Games/Trait/Class/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/Class/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/Class/Formatted.pm')
-rw-r--r--lib/Bot/Games/Trait/Class/Formatted.pm5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/Bot/Games/Trait/Class/Formatted.pm b/lib/Bot/Games/Trait/Class/Formatted.pm
index 403bba6..6c3092a 100644
--- a/lib/Bot/Games/Trait/Class/Formatted.pm
+++ b/lib/Bot/Games/Trait/Class/Formatted.pm
@@ -1,6 +1,5 @@
package Bot::Games::Trait::Class::Formatted;
-use Moose::Role;
-use MooseX::AttributeHelpers;
+use Bot::Games::OO::Role;
has default_formatters => (
metaclass => 'Collection::ImmutableHash',
@@ -22,6 +21,6 @@ sub _build_default_formatters {
}
}
-no Moose::Role;
+no Bot::Games::OO::Role;
1;