# HG changeset patch # User Philip Nienhuis # Date 1592589864 -7200 # Node ID d2fd4616829b078132ebf7b7ce9d580f65297f01 # Parent a7fcdac012d8ca410ffba7bc12698fe714a122f7 Remove OctClassLoader from JVM start options (bug #55174). * ov-java.cc (initialize_jvm): Remove call to vm_args.add() with OctClassLoader option. diff -r a7fcdac012d8 -r d2fd4616829b libinterp/octave-value/ov-java.cc --- 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.