From: Tomas Doran Date: Sun, 24 Jul 2011 17:02:36 +0000 (+0100) Subject: Remove trailing whitespace X-Git-Tag: 5.9000~16 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=91cb8b9a470a220ffa02f7f1dbf1cee769111871;p=catagits%2FCatalyst-Runtime.git Remove trailing whitespace --- diff --git a/lib/Catalyst/DispatchType/Path.pm b/lib/Catalyst/DispatchType/Path.pm index 4c23aaa..0578ff4 100644 --- a/lib/Catalyst/DispatchType/Path.pm +++ b/lib/Catalyst/DispatchType/Path.pm @@ -57,10 +57,10 @@ sub list { foreach my $action ( @{ $self->_paths->{$path} } ) { my $args = $action->attributes->{Args}->[0]; my $parts = defined($args) ? '/*' x $args : '/...'; - + my $display_path = "/$path/$parts"; $display_path =~ s{/{1,}}{/}g; - + $paths->row( $display_path, "/$action" ); } }