[svk-commit] r3123 - branches/delta-refactor/lib/SVK
nobody at bestpractical.com
nobody at bestpractical.com
Mon Nov 3 11:24:17 EST 2008
Author: clkao
Date: Mon Nov 3 11:24:17 2008
New Revision: 3123
Modified:
branches/delta-refactor/lib/SVK/Delta.pm
Log:
minor cleanup.
Modified: branches/delta-refactor/lib/SVK/Delta.pm
==============================================================================
--- branches/delta-refactor/lib/SVK/Delta.pm (original)
+++ branches/delta-refactor/lib/SVK/Delta.pm Mon Nov 3 11:24:17 2008
@@ -371,14 +371,14 @@
}
my $ignore = $self->xd->ignore($fullprops->{'svn:ignore'});
- my @direntries;
+ my $new_entries;
# if we are at somewhere arg{copath} not exist, $arg{type} is empty
if ($arg{type} && !(defined $targets && !keys %$targets)) {
- my $new_entries = $target->root->dir_entries($target->path_anchor, $pool);
- @direntries = sort grep { !exists $entries->{$_} } keys %$new_entries;
+ $new_entries = $target->root->dir_entries($target->path_anchor, $pool);
+ ;
}
- for my $entry (@direntries) {
+ for my $entry (sort grep { !exists $entries->{$_} } keys %$new_entries) {
my $newtarget;
if (defined $targets) {
next unless exists $targets->{$entry};
More information about the svk-commit
mailing list