Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Niefer2007-11-12 19:41:03 +0000
committerAndrew Niefer2007-11-12 19:41:03 +0000
commit573aeebffb6436947138771070b6202631285e2b (patch)
tree3662008d9efa3d007a96962c06c82c60f81f4442
parentacea608b5a03e8f8f89f27ba711e9dbdae59fe3e (diff)
downloadrt.equinox.framework-573aeebffb6436947138771070b6202631285e2b.tar.gz
rt.equinox.framework-573aeebffb6436947138771070b6202631285e2b.tar.xz
rt.equinox.framework-573aeebffb6436947138771070b6202631285e2b.zip
revert bug 205990
-rw-r--r--bundles/org.eclipse.equinox.executable/library/eclipseJNI.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/bundles/org.eclipse.equinox.executable/library/eclipseJNI.c b/bundles/org.eclipse.equinox.executable/library/eclipseJNI.c
index cc7c7ef1b..d01b8b496 100644
--- a/bundles/org.eclipse.equinox.executable/library/eclipseJNI.c
+++ b/bundles/org.eclipse.equinox.executable/library/eclipseJNI.c
@@ -314,13 +314,12 @@ int startJavaJNI( _TCHAR* libPath, _TCHAR* vmArgs[], _TCHAR* progArgs[] )
#ifdef MACOSX
init_args.version = JNI_VERSION_1_4;
- init_args.ignoreUnrecognized = JNI_TRUE;
#else
init_args.version = JNI_VERSION_1_2;
- init_args.ignoreUnrecognized = JNI_FALSE;
#endif
init_args.options = options;
init_args.nOptions = numVMArgs;
+ init_args.ignoreUnrecognized = JNI_TRUE;
if( createJavaVM(&jvm, &env, &init_args) == 0 ) {
registerNatives(env);

Back to the top