----- Original Message -----
From: <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, August 22, 2002 10:09 AM
Subject: cvs commit: jakarta-ant/src/main/org/apache/tools/ant
AntClassLoader.java
> costin 2002/08/22 10:09:05
>
> Modified: src/main/org/apache/tools/ant AntClassLoader.java
> Log:
> Few fixes ( I hope it won't brake anything ).
>
> Added 'org.sax' and 'sun.reflect' to the list of system pacakges. There
are
> problems when using JDK1.4 with 'endorsed' not set up corectly. This
allows
> using a different parser, but doesn't allow the overriting of system
classes.
this is not needed if we turn on the 'new' way of generating a system
package list, something we left commented out of ant1.5 as it was too big a
change at the last minute.
--- AntClassLoader.java 25 Jul 2002 15:21:01 -0000 1.56
> +++ AntClassLoader.java 22 Aug 2002 17:09:05 -0000 1.57
> @@ -323,6 +323,8 @@
> //addJavaLibraries();
> addSystemPackageRoot("java");
> addSystemPackageRoot("javax");
> + addSystemPackageRoot("org.xml.sax");
> + addSystemPackageRoot("sun.reflect");
> }
should just become
addJavaLibraries();
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>