From 82b616d7240ff0ca669d23b36c1c0c2827cc8233 Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Thu, 24 Jul 2003 23:51:50 +0000 Subject: [PATCH] Oh fucking hell. I left some debugging output in here. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2726 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- bin/matchclasses | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/matchclasses b/bin/matchclasses index 1353766cf..cd68eb94a 100755 --- a/bin/matchclasses +++ b/bin/matchclasses @@ -1,6 +1,6 @@ #!/usr/bin/perl -w # -# $Id: matchclasses,v 1.7 2003/07/24 23:50:32 mdb Exp $ +# $Id: matchclasses,v 1.8 2003/07/24 23:51:50 mdb Exp $ # # A script which inspects a hierarchy of classes and generates lists of # classes that match specified criterion. The criterion are that a class @@ -89,7 +89,7 @@ while (@gclasses) { my @cargs = splice(@gclasses, 0, min($ccount, 100)); my $carg = "'" . join("' '", @cargs) . "'"; - print "javap -classpath $classpath $carg\n"; + # print "javap -classpath $classpath $carg\n"; if (!open(JAVAP, "javap -classpath $classpath $carg|")) { warn "Can't inspect $carg: $!\n";