/hg/release/icedtea-web-1.7: Fix for java.lang.NoClassDefFoundEr...

jvanek at icedtea.classpath.org jvanek at icedtea.classpath.org
Fri Nov 23 12:41:23 UTC 2018


changeset 4453afdafaf9 in /hg/release/icedtea-web-1.7
details: http://icedtea.classpath.org/hg/release/icedtea-web-1.7?cmd=changeset;node=4453afdafaf9
author: Jiri Vanek <jvanek at redhat.com>
date: Fri Nov 23 13:41:00 2018 +0100

	Fix for java.lang.NoClassDefFoundError: Could not initialize class net.sourceforge.jnlp.runtime.JNLPRuntime$DeploymentConfigurationHolder
	* NEWS: mentioned PR3644
	* netx/net/sourceforge/jnlp/config/DeploymentConfiguration.java: removed useless logging of headless - initiation of logging - on windows
	* AUTHORS: added Lars


diffstat:

 AUTHORS                                                       |  1 +
 ChangeLog                                                     |  7 +++++++
 NEWS                                                          |  1 +
 netx/net/sourceforge/jnlp/config/DeploymentConfiguration.java |  4 ----
 4 files changed, 9 insertions(+), 4 deletions(-)

diffs (50 lines):

diff -r 057fabf9fdcb -r 4453afdafaf9 AUTHORS
--- a/AUTHORS	Wed Nov 07 12:34:44 2018 +0100
+++ b/AUTHORS	Fri Nov 23 13:41:00 2018 +0100
@@ -16,6 +16,7 @@
 Michał Górny <mgorny at gentoo.org>
 Mark Greenwood <mark at dcs.shef.ac.uk>
 Tereza Hlavackova <hlavackova.tereza at gmail.com>
+Lars Herschke <lhersch at dssgmbh.de>
 Peter Hatina <phatina at redhat.com>
 Andrew John Hughes <ahughes at redhat.com>
 Jie Kang <jkang at redhat.com>
diff -r 057fabf9fdcb -r 4453afdafaf9 ChangeLog
--- a/ChangeLog	Wed Nov 07 12:34:44 2018 +0100
+++ b/ChangeLog	Fri Nov 23 13:41:00 2018 +0100
@@ -1,3 +1,10 @@
+2018-11-23  Lars Herschke <lhersch at dssgmbh.de>
+
+	Fix for java.lang.NoClassDefFoundError: Could not initialize class net.sourceforge.jnlp.runtime.JNLPRuntime$DeploymentConfigurationHolder
+	* NEWS: mentioned PR3644
+	* netx/net/sourceforge/jnlp/config/DeploymentConfiguration.java: removed useless logging of headless - initiation of logging - on windows
+	* AUTHORS: added Lars
+
 2018-11-07  Olesya Gerasimenko <gammaray at basealt.ru>
 
 	Added Russian translation
diff -r 057fabf9fdcb -r 4453afdafaf9 NEWS
--- a/NEWS	Wed Nov 07 12:34:44 2018 +0100
+++ b/NEWS	Fri Nov 23 13:41:00 2018 +0100
@@ -12,6 +12,7 @@
 * added support for javafx-desc and so allwong run of pure-javafx only applications
 * --nosecurity enhanced for possibility to skip invalid signatures
 * enhanced to allow resources to be read also from j2se/java element (OmegaT)
+* PR3644 - java.lang.NoClassDefFoundError: Could not initialize class net.sourceforge.jnlp.runtime.JNLPRuntime$DeploymentConfigurationHolder
 
 New in release 1.7.1 (2017-12-15):
 * better work with authors file
diff -r 057fabf9fdcb -r 4453afdafaf9 netx/net/sourceforge/jnlp/config/DeploymentConfiguration.java
--- a/netx/net/sourceforge/jnlp/config/DeploymentConfiguration.java	Wed Nov 07 12:34:44 2018 +0100
+++ b/netx/net/sourceforge/jnlp/config/DeploymentConfiguration.java	Fri Nov 23 13:41:00 2018 +0100
@@ -284,10 +284,6 @@
         userDeploymentFileDescriptor = configFile;
         currentConfiguration = new HashMap<>();
         unchangeableConfiguration = new HashMap<>();
-        if (JNLPRuntime.isWindows()) {
-            boolean wh = JNLPRuntime.isHeadless();
-            OutputController.getLogger().log(OutputController.Level.MESSAGE_ALL, "On windows, answering headless at startup, to prevent race condition later - " + wh);
-         }
          try {
             IcoSpi spi = new IcoSpi();
             IIORegistry.getDefaultInstance().registerServiceProvider(spi);


More information about the distro-pkg-dev mailing list