diff options
author | Daniel Friesel <derf@finalrewind.org> | 2011-06-29 12:36:50 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2011-06-29 12:36:50 +0200 |
commit | 826ec4a8e61a2c3a1a9400cc93e2d4e8ae2bc448 (patch) | |
tree | 0f478a1db358e0e3c6e1b87e9518dcf84c7c22f7 /bin/efa | |
parent | 13256020f6eef6da48573aa96f29407da760dde7 (diff) |
Minor code style adjustment (no parens after accessors)
Diffstat (limited to 'bin/efa')
-rwxr-xr-x | bin/efa | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -185,12 +185,12 @@ $efa = eval { check_for_error($@); -my @routes = $efa->routes(); +my @routes = $efa->routes; for my $i ( 0 .. $#routes ) { - for my $c ( $routes[$i]->parts() ) { + for my $c ( $routes[$i]->parts ) { - for my $extra ( $c->extra() ) { + for my $extra ( $c->extra ) { if ( not( length $ignore_info and $extra =~ /$ignore_info/i ) ) { say "# $extra"; |