(Any $) is not necessary anymore for a multi method without any args
[dbsrgits/SQL-Translator-2.0-ish.git] / lib / SQL / Translator / Object / Compat.pm
index 8f2389f..0e7a5c7 100644 (file)
@@ -24,7 +24,7 @@ role SQL::Translator::Object::Compat {
         $self->column_ids;
     }
 
-    multi method fields(Any $) { $self->column_ids }
+    multi method fields { $self->column_ids }
 
     method add_field(Column $column does coerce) { $self->add_column($column) }