From 9a2a604c8ba39d05ab9eb80a4c8327862727f117 Mon Sep 17 00:00:00 2001 From: Karl Nelson Date: Fri, 18 Oct 2024 17:31:19 -0700 Subject: [PATCH] Restore the missing arguments. Next determine the conflict --- jpype/_core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jpype/_core.py b/jpype/_core.py index 8ea045787..9c7945ed7 100644 --- a/jpype/_core.py +++ b/jpype/_core.py @@ -253,7 +253,7 @@ def startJVM( # Keep the current locale settings, else Java will replace them. prior = [locale.getlocale(i) for i in categories] # Start the JVM - _jpype.startup(jvmpath, jvmargs, + _jpype.startup(jvmpath, jvmargs + extra_jvm_args, ignoreUnrecognized, convertStrings, interrupt) # Collect required resources for operation initializeResources()