[not part of build] Removed extraneous printf's.

This commit is contained in:
beard%netscape.com 2002-05-29 23:49:13 +00:00
parent dddd9bafa8
commit 51d1d9cf50

View File

@ -245,12 +245,9 @@ OSStatus MRJSession::open(const char* consolePath)
mMessageMonitor = new MRJMonitor(this);
}
printf("### MRJPlugin: MRJSession::open() here. ###\n");
JNIEnv* env = mMainEnv;
jclass session = env->FindClass("netscape/oji/MRJSession");
if (session) {
printf("### MRJPlugin: MRJSession::open() loaded the session class. ###\n");
mSession = (jclass) env->NewGlobalRef(session);
jmethodID openMethod = env->GetStaticMethodID(session, "open", "(Ljava/lang/String;)V");
if (openMethod) {
@ -261,8 +258,6 @@ OSStatus MRJSession::open(const char* consolePath)
}
}
env->DeleteLocalRef(session);
} else {
printf("### MRJPlugin: MRJSession::open() couldn't load the session class. ###\n");
}
if (mStatus == noErr)
@ -518,8 +513,6 @@ string MRJSession::getClassPath()
}
}
printf("### MRJPlugin: classPath = %s ###\n", classPath.c_str());
return classPath;
}
@ -536,7 +529,5 @@ string MRJSession::getPluginHome()
}
}
printf("### MRJPlugin: pluginHome = %s ###\n", pluginHome.c_str());
return pluginHome;
}