From: Justin Hunter Date: Tue, 23 Mar 2010 23:37:57 +0000 (-0700) Subject: lets remove that extra ; X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=850220add003688ea91d67b11965ee81e94c4cab;p=dbsrgits%2FSQL-Translator-2.0-ish.git lets remove that extra ; --- diff --git a/lib/SQL/Translator/Types.pm b/lib/SQL/Translator/Types.pm index 4727b4b..f8eb10c 100644 --- a/lib/SQL/Translator/Types.pm +++ b/lib/SQL/Translator/Types.pm @@ -4,7 +4,7 @@ class SQL::Translator::Types { use MooseX::Types -declare, [qw(Column Constraint ForeignKey Index PrimaryKey Procedure Schema Sequence Table Trigger View Bit DBIHandle MatchType Parser Producer Translator DBICSchema)]; - class_type DBICSchema, { class => 'DBIx::Class::Schema' };; + class_type DBICSchema, { class => 'DBIx::Class::Schema' }; class_type Column, { class => 'SQL::Translator::Object::Column' }; class_type Constraint, { class => 'SQL::Translator::Object::Constraint' };