changeset 28490:d2fd4616829b stable

Remove OctClassLoader from JVM start options (bug #55174). * ov-java.cc (initialize_jvm): Remove call to vm_args.add() with OctClassLoader option.
author Philip Nienhuis <prnienhuis@users.sf.net>
date Fri, 19 Jun 2020 20:04:24 +0200
parents a7fcdac012d8
children d4e8887117b7 c55e111c89b5
files libinterp/octave-value/ov-java.cc
diffstat 1 files changed, 0 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/libinterp/octave-value/ov-java.cc	Wed Jun 17 14:41:13 2020 -0700
+++ b/libinterp/octave-value/ov-java.cc	Fri Jun 19 20:04:24 2020 +0200
@@ -617,7 +617,6 @@
 //!
 //! - '-Djava.class.path=classpath', where @c classpath is given by
 //!   #initial_class_path().
-//! - '-Djava.system.class.loader=org.octave.OctClassLoader'.
 //! - '-Xrs'
 //!
 //! Further options are read from the file @c java.opts in the directory given
@@ -767,7 +766,6 @@
 
       // Hard-coded options for the jvm.
       vm_args.add ("-Djava.class.path=" + initial_class_path ());
-      vm_args.add ("-Djava.system.class.loader=org.octave.OctClassLoader");
       vm_args.add ("-Xrs");
 
       // Additional options given by file java.opts.