/hg/icedtea6: plugin: do not shadow specVersion and fileVersion

omajid at icedtea.classpath.org omajid at icedtea.classpath.org
Mon Oct 4 08:17:59 PDT 2010


changeset 145255946142 in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=145255946142
author: Omair Majid <omajid at redhat.com>
date: Mon Oct 04 11:13:32 2010 -0400

	plugin: do not shadow specVersion and fileVersion

	2010-10-04 Omair Majid <omajid at redhat.com>

	 * /netx/net/sourceforge/jnlp/PluginBridge.java Do not shadow
	specVersion and fileVersion variables by redeclaring them.
	(PluginBridge): Initialize specVersion and fileVersion.


diffstat:

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

diffs (34 lines):

diff -r 748a45decac0 -r 145255946142 ChangeLog
--- a/ChangeLog	Mon Oct 04 11:05:17 2010 -0400
+++ b/ChangeLog	Mon Oct 04 11:13:32 2010 -0400
@@ -1,3 +1,9 @@ 2010-10-04  Omair Majid  <omajid at redhat.
+2010-10-04  Omair Majid  <omajid at redhat.com>
+
+	* /netx/net/sourceforge/jnlp/PluginBridge.java
+	Do not shadow specVersion and fileVersion variables by redeclaring them.
+	(PluginBridge): Initialize specVersion and fileVersion.
+
 2010-10-04  Omair Majid  <omajid at redhat.com>
 
 	* netx/net/sourceforge/jnlp/resources/Messages.properties:
diff -r 748a45decac0 -r 145255946142 netx/net/sourceforge/jnlp/PluginBridge.java
--- a/netx/net/sourceforge/jnlp/PluginBridge.java	Mon Oct 04 11:05:17 2010 -0400
+++ b/netx/net/sourceforge/jnlp/PluginBridge.java	Mon Oct 04 11:13:32 2010 -0400
@@ -35,8 +35,6 @@ import net.sourceforge.jnlp.runtime.JNLP
 
 public class PluginBridge extends JNLPFile
 {
-    Version specVersion = new Version("1.0");
-    Version fileVersion = new Version("1.1");
 
     String name;
     String[] jars = new String[0];
@@ -48,6 +46,8 @@ public class PluginBridge extends JNLPFi
                         int width, int height, Hashtable atts)
     throws Exception
     {
+        specVersion = new Version("1.0");
+        fileVersion = new Version("1.1");
         this.codeBase = codebase;
         this.sourceLocation = documentBase;
 



More information about the distro-pkg-dev mailing list