Removed useless thing added in e79aa2e81c

This commit is contained in:
Alessandro Ranellucci 2014-12-17 00:52:01 +01:00
parent c00061678b
commit 9264db7ecd
8 changed files with 8 additions and 16 deletions

View file

@ -64,9 +64,9 @@ use overload
'fallback' => 1;
sub new {
my ($class, $type, @paths) = @_;
my ($class, @paths) = @_;
my $self = $class->_new($type);
my $self = $class->_new;
$self->append(@paths);
return $self;
}