From 12e8a63e2f797fdfb28e9f30761669465cb033ee Mon Sep 17 00:00:00 2001 From: Peter Donald Date: Tue, 23 Jul 2002 07:57:30 +0000 Subject: [PATCH] Remove redundent assignments git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@273156 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/org/apache/tools/ant/Task.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/org/apache/tools/ant/Task.java b/src/main/org/apache/tools/ant/Task.java index 04f83c550..fc3a17a18 100644 --- a/src/main/org/apache/tools/ant/Task.java +++ b/src/main/org/apache/tools/ant/Task.java @@ -66,9 +66,9 @@ import java.util.Enumeration; */ public abstract class Task extends ProjectComponent { /** Target this task belongs to, if any. */ - protected Target target = null; + protected Target target; /** Description of this task, if any. */ - protected String description = null; + protected String description; /** Location within the build file of this task definition. */ protected Location location = Location.UNKNOWN_LOCATION; /**