X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FRelationship%2FManyToMany.pm;h=163ac365102e20451842a9ffbc26fb0334b3dfab;hb=d23160de49bdf5c8a67eb59dec55c0d1a0a8d019;hp=76042c0d68bf9068da62a59c1146964ad8808ad5;hpb=ddc0a6c89d212433eb5716b2aa963f63b1f348d1;p=dbsrgits%2FDBIx-Class-Historic.git diff --git a/lib/DBIx/Class/Relationship/ManyToMany.pm b/lib/DBIx/Class/Relationship/ManyToMany.pm index 76042c0..163ac36 100644 --- a/lib/DBIx/Class/Relationship/ManyToMany.pm +++ b/lib/DBIx/Class/Relationship/ManyToMany.pm @@ -3,6 +3,7 @@ package # hide from PAUSE use strict; use warnings; +use warnings::register; use Sub::Name (); sub many_to_many { @@ -26,10 +27,21 @@ sub many_to_many { my $rs_meth = "${meth}_rs"; for ($add_meth, $remove_meth, $set_meth, $rs_meth) { - warn "***************************************************************************\n". - "The many-to-many relationship $meth is trying to create a utility method called $_. This will overwrite the existing method on $class. You almost certainly want to rename your method or the many-to-many relationship, as your method will not be callable (it will use the one from the relationship instead.) YOU HAVE BEEN WARNED\n". - "***************************************************************************\n" - if $class->can($_); + if ( $class->can ($_) ) { + warnings::warnif(<<"EOW") +*************************************************************************** +The many-to-many relationship $meth is trying to create a utility method called +$_. This will overwrite the existing method on $class. You almost certainly +want to rename your method or the many-to-many relationship, as your method +will not be callable (it will use the one from the relationship instead.) + +To disable this warning add the following to $class + + no warnings 'DBIx::Class::Relationship::ManyToMany'; + +*************************************************************************** +EOW + } } $rel_attrs->{alias} ||= $f_rel;