classpathx-discuss
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Classpathx-discuss] [patch] NPE bug in gnu.xml.aelfred2.JAXPFactory


From: Arnaud Vandyck
Subject: Re: [Classpathx-discuss] [patch] NPE bug in gnu.xml.aelfred2.JAXPFactory
Date: Tue, 20 Apr 2004 10:32:56 +0200
User-agent: Gnus/5.1006 (Gnus v5.10.6) Emacs/21.3 (gnu/linux)

Seems good to me, patch applyed.

Thanks Maarten!

Maarten Coene <address@hidden> writes:

> Hi,
>
> the gnu.xml.aelfred2.JAXPFactory.getFeature(String name) method throws a
> NullPointerException if you check for a feature that hasn't been set at
> the factory level.
>
> Here is a patch that fixes this.
>
> regards,
> Maarten
>
> Index: JAXPFactory.java
> ===================================================================
> RCS file: /cvsroot/classpathx/jaxp/src/gnu/xml/aelfred2/JAXPFactory.java,v
> retrieving revision 1.2
> diff -u -r1.2 JAXPFactory.java
> --- JAXPFactory.java    14 Apr 2004 15:40:02 -0000    1.2
> +++ JAXPFactory.java    19 Apr 2004 14:35:39 -0000
> @@ -117,7 +117,7 @@
>      {
>      Boolean    value = (Boolean) flags.get (name);
>     -    if (value == null)
> +    if (value != null)
>          return value.booleanValue ();
>      else
>          try {
>
>
>
> _______________________________________________
> Classpathx-discuss mailing list
> address@hidden
> http://mail.gnu.org/mailman/listinfo/classpathx-discuss
>
>

-- 
Arnaud Vandyck

I'm personally quite happy with one stable release every two years, and
am of the opinion that trying to release more will mean we'll have to
rename the distro from "stable" to "wobbly".
                -- Scott James Remnant on debian-devel




reply via email to

[Prev in Thread] Current Thread [Next in Thread]