Removed some debugging fprintfs which I had left over

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@12122 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Nicola Pero 2002-01-16 13:54:11 +00:00
parent 82335110d0
commit 0e2bd154dc

View file

@ -790,14 +790,10 @@ _bundle_load_callback(Class theClass, struct objc_category *theCategory)
theClass = NSClassFromString(className);
j = [_bundleClasses count];
fprintf (stderr, "Number of classes in bundle: %d\n", j);
for (i = 0; i < j && found == NO; i++)
{
Class c = [[_bundleClasses objectAtIndex: i] nonretainedObjectValue];
fprintf (stderr, "Considering class %s\n", c->name);
if (c == theClass)
{
found = YES;