merge to 10219

This commit is contained in:
Colin Kuskie 2009-04-08 16:35:31 +00:00
parent ae28bf79c8
commit 4c1307e3d0
194 changed files with 8203 additions and 2134 deletions

View file

@ -385,7 +385,7 @@ sub sortHash {
#-------------------------------------------------------------------
=head2 sortHashDecending ( hash )
=head2 sortHashDescending ( hash )
Sorts a hash in decending order by its values. Returns a Tie::IxHash.
You must assign this to a similarly tied hash to preserve the order.
@ -396,7 +396,6 @@ A hash to be sorted.
=cut
sub sortHashDescending {
my %hash = @_;
tie my %newHash, 'Tie::IxHash';
@ -408,5 +407,3 @@ sub sortHashDescending {
1;