peterreilly 2003/06/27 11:43:13 Modified: proposal/embed/src/java/org/apache/tools/ant/taskdefs Taskdef2.java Log: change access levels of methods to match new access levels in Definer Revision Changes Path 1.3 +2 -2 ant/proposal/embed/src/java/org/apache/tools/ant/taskdefs/Taskdef2.java Index: Taskdef2.java =================================================================== RCS file: /home/cvs/ant/proposal/embed/src/java/org/apache/tools/ant/taskdefs/Taskdef2.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- Taskdef2.java 7 Mar 2003 11:22:58 -0000 1.2 +++ Taskdef2.java 27 Jun 2003 18:43:13 -0000 1.3 @@ -219,7 +219,7 @@ * create the classloader then hand the definition off to the subclass; * @throws BuildException when the class wont load for any reason */ - private void addDefinition(ClassLoader al, String name, String value) + protected void addDefinition(ClassLoader al, String name, String value) throws BuildException { try { Class c = al.loadClass(value); @@ -239,7 +239,7 @@ /** * create a classloader for this definition */ - private AntClassLoader createLoader() { + protected AntClassLoader createLoader() { // magic property if (getProject().getProperty(REUSE_LOADER_REF) != null) { // Generate the 'reuse' name automatically from the reference.
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]