From b571d3985bb985fc16d033bfd2bd7528ea32ddd6 Mon Sep 17 00:00:00 2001 From: Nikolay Pultsin Date: Sat, 7 Apr 2012 12:54:07 +0100 Subject: [PATCH] parameter has been removed --- jni/NativeFormats/JavaNativeFormatPlugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jni/NativeFormats/JavaNativeFormatPlugin.cpp b/jni/NativeFormats/JavaNativeFormatPlugin.cpp index 0c391dff9..c60875315 100644 --- a/jni/NativeFormats/JavaNativeFormatPlugin.cpp +++ b/jni/NativeFormats/JavaNativeFormatPlugin.cpp @@ -34,7 +34,7 @@ static shared_ptr findCppPlugin(JNIEnv *env, jobject base) { env->DeleteLocalRef(fileTypeJava); shared_ptr plugin = PluginCollection::Instance().pluginByType(fileTypeCpp); if (plugin.isNull()) { - AndroidUtil::throwRuntimeException(env, "Native FormatPlugin instance is NULL for type " + fileTypeCpp); + AndroidUtil::throwRuntimeException("Native FormatPlugin instance is NULL for type " + fileTypeCpp); } return plugin; }