From 4123acf5ed4cf7306a319495998032b832a6c0bd Mon Sep 17 00:00:00 2001 From: Peter Donald Date: Sun, 30 Dec 2001 00:26:06 +0000 Subject: [PATCH] Update to use getLogger().() rather than log() Move EchoLevel inner class to top level class git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@270428 13f79535-47bb-0310-9956-ffa450edef68 --- .../apache/antlib/xml/XMLValidateTask.java | 42 +++---------------- 1 file changed, 6 insertions(+), 36 deletions(-) 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 : *