/hg/icedtea-web: PluginBridge's (fileLocation) of JNLPFile is no...

jvanek at icedtea.classpath.org jvanek at icedtea.classpath.org
Mon Mar 10 13:58:03 UTC 2014


changeset ffc228f3c71f in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=ffc228f3c71f
author: Jiri Vanek <jvanek at redhat.com>
date: Mon Mar 10 15:05:42 2014 +0100

	PluginBridge's (fileLocation) of JNLPFile is now properly set in constructor if not existing. Fixed rhbz#1072013


diffstat:

 ChangeLog                                   |  6 ++++++
 netx/net/sourceforge/jnlp/PluginBridge.java |  3 +++
 2 files changed, 9 insertions(+), 0 deletions(-)

diffs (26 lines):

diff -r bbf4cc4319da -r ffc228f3c71f ChangeLog
--- a/ChangeLog	Thu Mar 06 09:18:35 2014 -0500
+++ b/ChangeLog	Mon Mar 10 15:05:42 2014 +0100
@@ -1,3 +1,9 @@
+2014-03-10  Jiri Vanek  <jvanek at redhat.com>
+
+	Fixed rhbz#1072013
+	* netx/net/sourceforge/jnlp/PluginBridge.java: The (fileLocation) of
+	JNLPFile is now properly set in constructor if not existing.
+
 2014-03-06  Andrew Azores  <aazores at redhat.com>
 
 	* NEWS: added -version flag entry
diff -r bbf4cc4319da -r ffc228f3c71f netx/net/sourceforge/jnlp/PluginBridge.java
--- a/netx/net/sourceforge/jnlp/PluginBridge.java	Thu Mar 06 09:18:35 2014 -0500
+++ b/netx/net/sourceforge/jnlp/PluginBridge.java	Mon Mar 10 15:05:42 2014 +0100
@@ -101,6 +101,9 @@
                 // value is a complete URL, it will replace codeBase's context.
                 ParserSettings defaultSettings = new ParserSettings();
                 URL jnlp = new URL(codeBase, params.getJNLPHref());
+                if (fileLocation == null){
+                    fileLocation = jnlp;
+                }
                 JNLPFile jnlpFile = null;
 
                 if (params.getJNLPEmbedded() != null) {


More information about the distro-pkg-dev mailing list