Browse Source

Remove redundent assignments

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@273156 13f79535-47bb-0310-9956-ffa450edef68
master
Peter Donald 23 years ago
parent
commit
12e8a63e2f
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/main/org/apache/tools/ant/Task.java

+ 2
- 2
src/main/org/apache/tools/ant/Task.java View File

@@ -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;
/**


Loading…
Cancel
Save