From 6fcd1dd423ca8a55520265dfd895caac7407e233 Mon Sep 17 00:00:00 2001 From: Sean Zellmer Date: Thu, 20 Feb 2014 15:54:33 -0600 Subject: [PATCH] Removed useless line of code in many_to_many --- lib/DBIx/Class/Relationship/ManyToMany.pm | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/DBIx/Class/Relationship/ManyToMany.pm b/lib/DBIx/Class/Relationship/ManyToMany.pm index 07f89c295..ef63b0884 100644 --- a/lib/DBIx/Class/Relationship/ManyToMany.pm +++ b/lib/DBIx/Class/Relationship/ManyToMany.pm @@ -63,7 +63,6 @@ EOW *$rs_meth_name = subname $rs_meth_name, sub { my $self = shift; my $attrs = @_ > 1 && ref $_[$#_] eq 'HASH' ? pop(@_) : {}; - my @args = ($f_rel, @_ > 0 ? @_ : undef, { %{$rel_attrs||{}}, %$attrs }); my $rs = $self->search_related($rel)->search_related( $f_rel, @_ > 0 ? @_ : undef, { %{$rel_attrs||{}}, %$attrs } );