From a1b00e5c63559e7be1aaf5a7994475e631755127 Mon Sep 17 00:00:00 2001 From: Matthew Jason Benson Date: Fri, 8 Apr 2011 16:16:30 +0000 Subject: [PATCH] ws consistency git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@1090319 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/org/apache/tools/ant/taskdefs/Antlib.java | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/main/org/apache/tools/ant/taskdefs/Antlib.java b/src/main/org/apache/tools/ant/taskdefs/Antlib.java index 737bccc38..801f60496 100644 --- a/src/main/org/apache/tools/ant/taskdefs/Antlib.java +++ b/src/main/org/apache/tools/ant/taskdefs/Antlib.java @@ -57,7 +57,7 @@ public class Antlib extends Task implements TaskContainer { * @param project the current project * @param antlibUrl the url to read the definitions from * @param uri the uri that the antlib is to be placed in - * @return the ant lib task + * @return the ant lib task */ public static Antlib createAntlib(Project project, URL antlibUrl, String uri) { @@ -108,13 +108,12 @@ public class Antlib extends Task implements TaskContainer { } } - // // Instance // private ClassLoader classLoader; - private String uri = ""; - private List tasks = new ArrayList(); + private String uri = ""; + private List tasks = new ArrayList(); /** * Set the class loader for this antlib. @@ -131,7 +130,7 @@ public class Antlib extends Task implements TaskContainer { * Set the URI for this antlib. * @param uri the namespace uri */ - protected void setURI(String uri) { + protected void setURI(String uri) { this.uri = uri; }