[RFC] plugin: dont shadow *Version variables in JNLPFile
Dr Andrew John Hughes
ahughes at redhat.com
Fri Oct 1 09:56:18 PDT 2010
On 11:35 Fri 01 Oct , Deepak Bhole wrote:
> * Omair Majid <omajid at redhat.com> [2010-10-01 11:15]:
> > Hi,
> >
> > The varaibles specVersion and fileVersion defined in PluginBridge
> > are shadowing the variables with the same names in JNLPFile. This
> > means that whenever JNLPFile tries to access fileVersion and
> > specVerion for a plugin, it will see nulls. I am not sure if this
> > matters - most of the uses of Version variables check for nulls.
> > However, since we are setting specVersion and fileVersion
> > explicitly, they should be set to the correct values.
> >
> > The attached patch makes sure the variables are not shadowed.
> >
> > Cheers,
> > Omair
>
> > diff -r 674b1799df8c netx/net/sourceforge/jnlp/PluginBridge.java
> > --- a/netx/net/sourceforge/jnlp/PluginBridge.java Wed Sep 29 13:37:46 2010 -0700
> > +++ b/netx/net/sourceforge/jnlp/PluginBridge.java Fri Oct 01 10:47:59 2010 -0400
> > @@ -35,8 +35,6 @@
> >
> > 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 @@
> > int width, int height, Hashtable atts)
> > throws Exception
> > {
> > + specVersion = new Version("1.0");
> > + fileVersion = new Version("1.1");
> > this.codeBase = codebase;
> > this.sourceLocation = documentBase;
> >
>
> Looks fine to me. OK for 1.7/1.8/1.9 and HEAD.
>
> Deepak
Likewise. Good catch.
--
Andrew :)
Free Java Software Engineer
Red Hat, Inc. (http://www.redhat.com)
Support Free Java!
Contribute to GNU Classpath and the OpenJDK
http://www.gnu.org/software/classpath
http://openjdk.java.net
PGP Key: 94EFD9D8 (http://subkeys.pgp.net)
Fingerprint = F8EF F1EA 401E 2E60 15FA 7927 142C 2591 94EF D9D8
More information about the distro-pkg-dev
mailing list