/hg/icedtea-web: Trim whitespace from jar names in PluginBridge ...
dbhole at icedtea.classpath.org
dbhole at icedtea.classpath.org
Tue Oct 26 15:08:50 PDT 2010
changeset 98887d964b0e in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=98887d964b0e
author: Deepak Bhole <dbhole at redhat.com>
date: Tue Oct 26 18:08:09 2010 -0700
Trim whitespace from jar names in PluginBridge constructor.
diffstat:
2 files changed, 11 insertions(+)
ChangeLog | 5 +++++
netx/net/sourceforge/jnlp/PluginBridge.java | 6 ++++++
diffs (28 lines):
diff -r d4a914a000e3 -r 98887d964b0e ChangeLog
--- a/ChangeLog Tue Oct 26 17:49:57 2010 -0700
+++ b/ChangeLog Tue Oct 26 18:08:09 2010 -0700
@@ -1,3 +1,8 @@ 2010-10-26 Deepak Bhole <dbhole at redhat.
+2010-10-26 Deepak Bhole <dbhole at redhat.com>
+
+ * netx/net/sourceforge/jnlp/PluginBridge.java: Trim whitespace from jar
+ names in the constructor.
+
2010-10-26 Deepak Bhole <dbhole at redhat.com>
* plugin/icedteanp/java/sun/applet/PluginAppletViewer.java:
diff -r d4a914a000e3 -r 98887d964b0e netx/net/sourceforge/jnlp/PluginBridge.java
--- a/netx/net/sourceforge/jnlp/PluginBridge.java Tue Oct 26 17:49:57 2010 -0700
+++ b/netx/net/sourceforge/jnlp/PluginBridge.java Tue Oct 26 18:08:09 2010 -0700
@@ -103,6 +103,12 @@ public class PluginBridge extends JNLPFi
if (jar != null && jar.length() > 0) {
this.jars = jar.split(",");
+
+ // trim white spaces
+ for (int i =0; i < this.jars.length; i++) {
+ this.jars[i] = this.jars[i].trim();
+ }
+
if (JNLPRuntime.isDebug()) {
System.err.println("Jar string: " + jar);
System.err.println("jars length: " + jars.length);
More information about the distro-pkg-dev
mailing list