[svn:parrot] r48599 - trunk/config/auto

jkeenan at svn.parrot.org jkeenan at svn.parrot.org
Mon Aug 23 00:14:42 UTC 2010


Author: jkeenan
Date: Mon Aug 23 00:14:40 2010
New Revision: 48599
URL: https://trac.parrot.org/parrot/changeset/48599

Log:
Delete commented-out code.

Modified:
   trunk/config/auto/pmc.pm

Modified: trunk/config/auto/pmc.pm
==============================================================================
--- trunk/config/auto/pmc.pm	Sun Aug 22 23:49:08 2010	(r48598)
+++ trunk/config/auto/pmc.pm	Mon Aug 23 00:14:40 2010	(r48599)
@@ -249,7 +249,6 @@
 
     # With the test for definedness below, we account for PMCs which have been
     # deactivated but whose index numbers remain in src/pmc/pmc.num.
-#    return join(' ' => grep { defined $_ } @sorted_pmcs);
     my $active_pmcs = [ grep { defined $_ } @sorted_pmcs ];
  
     # At this point we check to see whether any active_pmcs are missing from
@@ -276,7 +275,6 @@
     return \%seen_manifest;
 }
 
-#    check_pmcs_against_manifest( $active_pmcs, $seen_manifest );
 sub check_pmcs_against_manifest {
     my ($active_pmcs, $seen_manifest) = @_;
     my @missing_from_manifest = grep { ! exists $seen_manifest->{$_} }


More information about the parrot-commits mailing list