Revision b459f8fe
Von Moritz Bunkus vor fast 8 Jahren hinzugefügt
SL/Layout/ActionBar.pm | ||
---|---|---|
59 | 59 |
while (my $type = shift(@actions)) { |
60 | 60 |
if (blessed($type) && $type->isa('SL::Layout::ActionBar::Action')) { |
61 | 61 |
push @parsed, $type; |
62 |
continue;
|
|
62 |
next;
|
|
63 | 63 |
} |
64 | 64 |
|
65 | 65 |
my $descriptor = $class_descriptors{lc $type} || croak("Unknown action type '${type}'"); |
Auch abrufbar als: Unified diff
ActionBar: nicht »continue«, sondern »next« für Short-Circuit einer Schleife