Changeset 17582 for ext

Show
Ignore:
Timestamp:
09/01/07 16:32:28 (17 months ago)
Author:
masak
Message:

[File::Find]
* changed illegal unless/else to if/else

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • ext/File-Find/lib/File/Find.pm

    r17112 r17582  
    3131            next if $node ~~ m:P5/^(?:\.){1,2}$/; 
    3232            my $abs = catdir( $dir, $node ); 
    33             unless $abs ~~ :d  { 
     33            if $abs !~~ :d  { 
    3434                $abs = catfile( $dir, $node ); 
    3535                if $wfile_cb( $node, $dir, $abs ) {