donaldp 2002/07/23 00:57:30
Modified: src/main/org/apache/tools/ant Task.java
Log:
Remove redundent assignments
Revision Changes Path
1.33 +2 -2 jakarta-ant/src/main/org/apache/tools/ant/Task.java
Index: Task.java
===================================================================
RCS file: /home/cvs/jakarta-ant/src/main/org/apache/tools/ant/Task.java,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- Task.java 23 Jul 2002 07:54:46 -0000 1.32
+++ Task.java 23 Jul 2002 07:57:30 -0000 1.33
@@ -66,9 +66,9 @@
*/
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;
/**
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>