diff --git a/proposal/myrmidon/src/java/org/apache/antlib/xml/XMLValidateTask.java b/proposal/myrmidon/src/java/org/apache/antlib/xml/XMLValidateTask.java index 85913b131..0407beede 100644 --- a/proposal/myrmidon/src/java/org/apache/antlib/xml/XMLValidateTask.java +++ b/proposal/myrmidon/src/java/org/apache/antlib/xml/XMLValidateTask.java @@ -207,7 +207,7 @@ public class XMLValidateTask { if( this.classpath == null ) { - this.classpath = new Path( getProject() ); + this.classpath = new Path(); } return this.classpath.createPath(); } @@ -445,32 +445,6 @@ public class XMLValidateTask } } - public static class DTDLocation - { - private String publicId = null; - private String location = null; - - public void setLocation( String location ) - { - this.location = location; - } - - public void setPublicId( String publicId ) - { - this.publicId = publicId; - } - - public String getLocation() - { - return location; - } - - public String getPublicId() - { - return publicId; - } - } - /* * ValidatorErrorHandler role : *